Merge pull request #10390 from eashwar/8278-cache-control-static-files

Serve correctly hashed static files with the Cache-Control header
This commit is contained in:
Norbert de Langen 2020-04-15 23:58:38 +02:00 committed by GitHub
commit f85cfb2d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,11 @@ export default function (options) {
devMiddlewareOptions
);
router.get(/\/static\/media\/.*\..*/, (request, response, next) => {
response.set('Cache-Control', `public, max-age=31536000`);
next();
});
router.use(managerDevMiddlewareInstance);
return new Promise((resolve, reject) => {