Skip to content
Snippets Groups Projects
Commit f1d07dfb authored by syuilo's avatar syuilo
Browse files

Fix favicon provide

parent cddfc551
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ app.use(views(__dirname + '/views', {
}));
// Serve favicon
app.use(favicon(`${client}/assets/favicon.png`));
app.use(favicon(`${__dirname}/../../../assets/favicon.png`));
// Common request handler
app.use(async (ctx, next) => {
......
......@@ -13,7 +13,7 @@ html
meta(name='theme-color' content='#86b300')
meta(property='og:site_name' content= instanceName || 'Misskey')
meta(name='viewport' content='width=device-width, initial-scale=1')
link(rel='icon' href= icon || '/favicon.png')
link(rel='icon' href= icon || '/favicon.ico')
link(rel='apple-touch-icon' href= icon || '/apple-touch-icon.png')
link(rel='manifest' href='/manifest.json')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment