Skip to content
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

fix: set immutable cache-control for _next/static #2767

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/build/content/static.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,20 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
})
}

export const setHeadersConfig = async (ctx: PluginContext): Promise<void> => {
// https://nextjs.org/docs/app/api-reference/config/next-config-js/headers#cache-control
// Next.js sets the Cache-Control header of public, max-age=31536000, immutable for truly
// immutable assets. It cannot be overridden. These immutable files contain a SHA-hash in
// the file name, so they can be safely cached indefinitely.
const { basePath } = ctx.buildConfig
ctx.netlifyConfig.headers.push({
for: `${basePath}/_next/static/*`,
values: {
'Cache-Control': 'public, max-age=31536000, immutable',
},
})
}

export const copyStaticExport = async (ctx: PluginContext): Promise<void> => {
await tracer.withActiveSpan('copyStaticExport', async () => {
if (!ctx.exportDetail?.outDirectory) {
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
copyStaticContent,
copyStaticExport,
publishStaticDir,
setHeadersConfig,
unpublishStaticDir,
} from './build/content/static.js'
import { clearStaleEdgeHandlers, createEdgeHandlers } from './build/functions/edge.js'
Expand Down Expand Up @@ -66,7 +67,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {

// static exports only need to be uploaded to the CDN and setup /_next/image handler
if (ctx.buildConfig.output === 'export') {
return Promise.all([copyStaticExport(ctx), setImageConfig(ctx)])
return Promise.all([copyStaticExport(ctx), setHeadersConfig(ctx), setImageConfig(ctx)])
}

await verifyAdvancedAPIRoutes(ctx)
Expand All @@ -78,6 +79,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {
copyPrerenderedContent(ctx),
createServerHandler(ctx),
createEdgeHandlers(ctx),
setHeadersConfig(ctx),
setImageConfig(ctx),
])
})
Expand Down
1 change: 1 addition & 0 deletions tests/utils/fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ export async function runPluginStep(
// INTERNAL_EDGE_FUNCTIONS_SRC: '.netlify/edge-functions',
},
netlifyConfig: {
headers: [],
redirects: [],
},
utils: {
Expand Down
16 changes: 16 additions & 0 deletions tests/utils/playwright-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const makeE2EFixture = (

export const test = base.extend<
{
ensureStaticAssetsHaveImmutableCacheControl: void
takeScreenshot: void
pollUntilHeadersMatch: (
url: string,
Expand Down Expand Up @@ -91,4 +92,19 @@ export const test = base.extend<
},
{ auto: true },
],
ensureStaticAssetsHaveImmutableCacheControl: [
async ({ page }, use) => {
page.on('response', (response) => {
if (response.url().includes('/_next/static/')) {
expect(
response.headers()['cache-control'],
'_next/static assets should have immutable cache control',
).toContain('public,max-age=31536000,immutable')
}
})

await use()
},
{ auto: true },
],
})
Loading