Fix assets test and favicon type (#7344)

* fix

* koa-faviconはimage/x-iconがデフォルトらしい

* シンプルに

* faviconなど
This commit is contained in:
MeiMei
2021-03-13 23:22:54 +09:00
committed by GitHub
parent 9e634360fa
commit 7d02b36092
5 changed files with 16 additions and 9 deletions

View File

@ -45,7 +45,7 @@ app.use(views(__dirname + '/views', {
}));
// Serve favicon
app.use(favicon(`${__dirname}/../../../assets/favicon.png`));
app.use(favicon(`${__dirname}/../../../assets/favicon.ico`));
// Common request handler
app.use(async (ctx, next) => {