This commit is contained in:
syuilo 2018-04-13 12:08:56 +09:00
parent b099ad2a30
commit f618dedfbc

View file

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