キャッシュの設定を調整

This commit is contained in:
syuilo 2018-09-19 14:22:46 +09:00
parent d9f0e158a3
commit ea3bcbbc37
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -162,8 +162,7 @@ const router = new Router();
router.get('/assets/*', async ctx => { router.get('/assets/*', async ctx => {
await send(ctx, ctx.params[0], { await send(ctx, ctx.params[0], {
root: `${__dirname}/../../docs/assets/`, root: `${__dirname}/../../docs/assets/`,
maxage: ms('7 days'), maxage: ms('1 days')
immutable: true
}); });
}); });