-
Notifications
You must be signed in to change notification settings - Fork 91
fix: revert "fix(perf): exclude /_next/static/*
from generated functions (#3100)"
#3123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ export const test = base.extend< | |
if (response.url().includes('/_next/static/')) { | ||
expect( | ||
response.headers()['cache-control'], | ||
`_next/static asset (${response.url()}) should have immutable cache control`, | ||
'_next/static assets should have immutable cache control', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could optionally keep this change There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we can re-add it later, ideally we end up with some solution that does exclude I don't want to delay merging and releasing it by doign adjustments here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #3124 For the restoration of this and the i18n+basePath test adjustments |
||
).toContain('public,max-age=31536000,immutable') | ||
} | ||
}) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we still want these test changes