DEV: use sketchy favicon in dev ember proxy (#18280)

This commit is contained in:
Andrei Prigorshnev 2022-09-20 04:53:18 +04:00 committed by GitHub
parent 7b243f3955
commit 37777ac3a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -464,7 +464,12 @@ to serve API requests. For example:
app.use(
"/favicon.ico",
express.static(path.join(__dirname, "../../../../images/favicon.ico"))
express.static(
path.join(
__dirname,
"../../../../../../public/images/discourse-logo-sketch-small.png"
)
)
);
app.use(rawMiddleware, async (req, res, next) => {