mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
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:
commit
f85cfb2d36
@ -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) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user