Skip to content

Commit

Permalink
fix(core): add no-transform to cache-control header (sse) #5762
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Dec 8, 2020
1 parent d97799c commit 41d46c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/router/sse-stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class SseStream extends Transform {
Connection: 'keep-alive',
// Disable cache, even for old browsers and proxies
'Cache-Control':
'private, no-cache, no-store, must-revalidate, max-age=0',
'private, no-cache, no-store, must-revalidate, max-age=0, no-transform',
'Transfer-Encoding': 'identity',
Pragma: 'no-cache',
Expire: '0',
Expand Down

0 comments on commit 41d46c0

Please sign in to comment.