Skip to content

Commit c4bd1ab

Browse files
author
Guillaume Chau
committedApr 8, 2019
fix: set cache-control header on static files
1 parent 08de713 commit c4bd1ab

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed
 

‎packages/@vue/cli-ui/apollo-server/server.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,21 @@ const plugins = require('./connectors/plugins')
88
const distPath = path.resolve(__dirname, '../dist')
99
const publicPath = path.resolve(__dirname, '../ui-public')
1010

11+
const CACHE_CONTROL = 'no-store, no-cache, must-revalidate, private'
12+
1113
module.exports = app => {
12-
app.use(express.static(distPath, { maxAge: 0 }))
13-
app.use('/public', express.static(publicPath, { maxAge: 0 }))
14+
app.use(express.static(distPath, { setHeaders }))
15+
app.use('/public', express.static(publicPath, { setHeaders }))
1416
app.use('/_plugin/:id/*', plugins.serve)
1517
app.use('/_plugin-logo/:id', plugins.serveLogo)
1618
app.use('/_addon/:id/*', clientAddons.serve)
17-
app.use(fallback(path.join(distPath, 'index.html'), { maxAge: 0 }))
19+
app.use(fallback(path.join(distPath, 'index.html'), {
20+
headers: {
21+
'Cache-Control': CACHE_CONTROL
22+
}
23+
}))
24+
}
25+
26+
function setHeaders (res, path, stat) {
27+
res.set('Cache-Control', CACHE_CONTROL)
1828
}

0 commit comments

Comments
 (0)
Please sign in to comment.