Fix wrong return code for favicon
This commit is contained in:
parent
feb5f7ccee
commit
d7e93f3ac1
|
@ -58,7 +58,7 @@ app.use(helmet.contentSecurityPolicy({
|
||||||
app.use('/static', expressStaticGzip('public/static'))
|
app.use('/static', expressStaticGzip('public/static'))
|
||||||
|
|
||||||
app.get('/favicon.ico', (req, res) => {
|
app.get('/favicon.ico', (req, res) => {
|
||||||
res.status(404).send('Not Found !!!')
|
res.status(204).send('Not Found !!!')
|
||||||
})
|
})
|
||||||
|
|
||||||
let head = jsonfile.readFileSync(path.join(process.cwd(), 'config/head.json'))
|
let head = jsonfile.readFileSync(path.join(process.cwd(), 'config/head.json'))
|
||||||
|
|
Loading…
Reference in New Issue