Skip to content

Commit

Permalink
Fix full page cache
Browse files Browse the repository at this point in the history
  • Loading branch information
blittle committed Jun 17, 2024
1 parent f160471 commit be31d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/full-page-cache/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default {
if (
!url.pathname.startsWith('/account') &&
!url.pathname.startsWith('/cart') &&
response.status === 200
(response.status === 200 || response.status === 204)
) {
response.headers.set(
'Oxygen-Cache-Control',
Expand Down

0 comments on commit be31d28

Please sign in to comment.