diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2021-03-13 23:22:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-13 23:22:54 +0900 |
| commit | 7d02b36092bbb4e1887abde57500e3aba13497f4 (patch) | |
| tree | 0ea2abdd223a392d2f89b0d34f47ec4790687986 /src/server/web | |
| parent | Fix Schema (#7347) (diff) | |
| download | sharkey-7d02b36092bbb4e1887abde57500e3aba13497f4.tar.gz sharkey-7d02b36092bbb4e1887abde57500e3aba13497f4.tar.bz2 sharkey-7d02b36092bbb4e1887abde57500e3aba13497f4.zip | |
Fix assets test and favicon type (#7344)
* fix
* koa-faviconはimage/x-iconがデフォルトらしい
* シンプルに
* faviconなど
Diffstat (limited to 'src/server/web')
| -rw-r--r-- | src/server/web/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/web/index.ts b/src/server/web/index.ts index 7b087bbf5b..ea356206ff 100644 --- a/src/server/web/index.ts +++ b/src/server/web/index.ts @@ -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) => { |