Stronger cache invalidation

This commit is contained in:
Michael Jackson 2019-01-14 20:02:45 -08:00
parent f01d23da1d
commit 2e81715024
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default function serveMainPage(req, res) {
res
.set({
'Cache-Control': 'public, max-age=0, must-revalidate', // do not cache
'Cache-Control': 'no-cache, no-store, must-revalidate', // do not cache
'Cache-Tag': 'main'
})
.send(html);