mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Initial implementation of cache-control header
This commit is contained in:
parent
e0d77c3fc8
commit
623b1c59e4
@ -69,6 +69,13 @@ async function getServer(app, options) {
|
||||
async function applyStatic(app, options) {
|
||||
const { staticDir } = options;
|
||||
|
||||
const cacheControlConfig = {
|
||||
index: false,
|
||||
setHeaders: (res) => {
|
||||
res.set('Cache-Control', `public, max-age=31536000`);
|
||||
},
|
||||
};
|
||||
|
||||
let hasCustomFavicon = false;
|
||||
|
||||
if (staticDir && staticDir.length) {
|
||||
@ -82,7 +89,7 @@ async function applyStatic(app, options) {
|
||||
}
|
||||
|
||||
logger.info(`=> Loading static files from: ${staticPath} .`);
|
||||
app.use(express.static(staticPath, { index: false }));
|
||||
app.use(express.static(staticPath, cacheControlConfig));
|
||||
|
||||
const faviconPath = path.resolve(staticPath, 'favicon.ico');
|
||||
|
||||
|
@ -27,6 +27,11 @@ export default function (options) {
|
||||
const outputDir = path.resolve(options.outputDir || resolvePathInStorybookCache('public'));
|
||||
const configType = 'DEVELOPMENT';
|
||||
|
||||
router.get(/\/static\/media\/.*\..*/, (request, response, next) => {
|
||||
response.set('Cache-Control', `public, max-age=31536000`);
|
||||
next();
|
||||
});
|
||||
|
||||
const startTime = process.hrtime();
|
||||
let managerTotalTime;
|
||||
let previewTotalTime;
|
||||
@ -169,7 +174,6 @@ export default function (options) {
|
||||
response.set('Content-Type', 'text/html');
|
||||
response.sendFile(path.join(`${dllPath}/${request.params[0]}`));
|
||||
});
|
||||
|
||||
return { previewStats, managerStats, managerTotalTime, previewTotalTime, router };
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user