Update index.ts (#7343)

This commit is contained in:
okpierre 2021-03-12 23:19:49 -05:00 committed by GitHub
parent 69efdb4ac9
commit c34b8c594f

View file

@ -83,7 +83,7 @@ router.get('/assets/(.*)', async ctx => {
// Apple touch icon // Apple touch icon
router.get('/apple-touch-icon.png', async ctx => { router.get('/apple-touch-icon.png', async ctx => {
await send(ctx as any, '/apple-touch-icon.png', { await send(ctx as any, '/apple-touch-icon.png', {
root: assets root: staticAssets
}); });
}); });