Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit d5e1c5c

Browse files
committed
chore(nx/server): fix favicon
1 parent 2148714 commit d5e1c5c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

apps/server/src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default async function buildApp() {
109109
app.use(`/robots.txt`, express.static(path.join(scriptDir, "public/robots.txt")));
110110
app.use(`/icon.png`, express.static(path.join(scriptDir, "public/icon.png")));
111111
app.use(sessionParser);
112-
app.use(favicon(`${scriptDir}/../assets/icon.ico`));
112+
app.use(favicon(`${scriptDir}/assets/icon.ico`));
113113

114114
if (openID.isOpenIDEnabled())
115115
app.use(auth(openID.generateOAuthConfig()));

0 commit comments

Comments
 (0)