We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae56e7b commit 355622aCopy full SHA for 355622a
src/index.js
@@ -58,6 +58,9 @@ app.use(compression());
58
// Static paths
59
app.use(express.static(path.resolve(__dirname, '../static')));
60
61
+// favicon for browsers
62
+app.use('/favicon.ico', express.static(path.resolve(__dirname, '../static/custom/favicon.ico')));
63
+
64
// Body parser middlewares
65
app.use(express.json({ limit: '500mb' }));
66
app.use(express.urlencoded({ extended: false, limit: '500mb' }));
0 commit comments