diff --git a/src/server/index.tsx b/src/server/index.tsx
index 0dcd164a..13828899 100644
--- a/src/server/index.tsx
+++ b/src/server/index.tsx
@@ -133,10 +133,6 @@ server.get("/*", async (req, res) => {
-
-
-
-
diff --git a/src/shared/components/app.tsx b/src/shared/components/app.tsx
index 262e4b54..6012d317 100644
--- a/src/shared/components/app.tsx
+++ b/src/shared/components/app.tsx
@@ -11,6 +11,7 @@ import { Theme } from "./theme";
import { Symbols } from "./symbols";
import { GetSiteResponse } from "lemmy-js-client";
import "./styles.scss";
+import { favIconPngUrl, favIconUrl } from "shared/utils";
export interface AppProps {
siteRes: GetSiteResponse;
@@ -33,9 +34,15 @@ export class App extends Component {
+
)}
diff --git a/src/shared/utils.ts b/src/shared/utils.ts
index 363f810e..3049a030 100644
--- a/src/shared/utils.ts
+++ b/src/shared/utils.ts
@@ -72,8 +72,8 @@ import { i18n } from "./i18next";
export const wsClient = new LemmyWebsocket();
-export const favIconUrl = "/static/assets/favicon.svg";
-export const favIconPngUrl = "/static/assets/apple-touch-icon.png";
+export const favIconUrl = "/static/assets/icons/favicon.svg";
+export const favIconPngUrl = "/static/assets/icons/apple-touch-icon.png";
// TODO
// export const defaultFavIcon = `${window.location.protocol}//${window.location.host}${favIconPngUrl}`;
export const repoUrl = "https://github.com/LemmyNet";