Fix again favicon

This commit is contained in:
Danny Spina 2023-06-20 09:41:34 +02:00
parent 2234aca53f
commit c6eeccaf44

View File

@ -113,6 +113,10 @@ app.get("/ooops", (_, res) => {
res.sendFile(path.join(__dirname + "/dist/info_not_blazed.html"));
});
app.get("/favicon.svg", (_, res) => {
res.sendFile(path.join(__dirname + "/favicon.svg"));
});
app.listen(port, () => {
console.log(`Got request`);
});