Improved cache control headers for errors

This commit is contained in:
dangered wolf 2023-09-10 10:27:09 -04:00
parent cc4bd45aa1
commit db64d25b67
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -366,7 +366,7 @@ const versionRequest = async (request: IRequest) => {
{ {
headers: { headers: {
...Constants.RESPONSE_HEADERS, ...Constants.RESPONSE_HEADERS,
'cache-control': 'max-age=1' 'cache-control': 'max-age=0, no-cache, no-store, must-revalidate',
}, },
status: 200 status: 200
} }
@ -686,7 +686,7 @@ const sentryWrapper = async (event: FetchEvent, test = false): Promise<void> =>
headers: { headers: {
...Constants.RESPONSE_HEADERS, ...Constants.RESPONSE_HEADERS,
'content-type': 'text/html', 'content-type': 'text/html',
'cache-control': 'max-age=1' 'cache-control': 'max-age=0, no-cache, no-store, must-revalidate'
}, },
status: 200 status: 200
}); });