This commit is contained in:
syuilo 2018-04-14 01:46:03 +09:00
parent fde2782a9e
commit 8260464090
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const app = new Koa();
app.use(cors());
app.use(async (ctx, next) => {
// Cache 365days
ctx.set('Cache-Control', 'max-age=31536000, immutable');
await next();
});