Skip to content

Commit

Permalink
Merge pull request #809 from hmcts/FACT-2045-cache
Browse files Browse the repository at this point in the history
FACT-2045 remove no-store from cache-control header
  • Loading branch information
amstevenson authored Dec 12, 2024
2 parents 3b5f262 + 850464f commit 9f4befc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ app.use(express.static(path.join(__dirname, 'public')));
app.use((req, res, next) => {
res.setHeader(
'Cache-Control',
'no-cache, max-age=0, must-revalidate, no-store',
'no-cache, max-age=0, must-revalidate',
);
next();
});
Expand Down

0 comments on commit 9f4befc

Please sign in to comment.