Skip to content

Commit c9def8e

Browse files
committed
fix: set immutable cache-control for _next/static
1 parent 2b133ff commit c9def8e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/build/content/static.ts

+14
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,20 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
7777
})
7878
}
7979

80+
export const setHeadersConfig = async (ctx: PluginContext): Promise<void> => {
81+
// https://nextjs.org/docs/app/api-reference/config/next-config-js/headers#cache-control
82+
// Next.js sets the Cache-Control header of public, max-age=31536000, immutable for truly
83+
// immutable assets. It cannot be overridden. These immutable files contain a SHA-hash in
84+
// the file name, so they can be safely cached indefinitely.
85+
const { basePath } = await ctx.getRoutesManifest()
86+
ctx.netlifyConfig.headers.push({
87+
for: `${basePath}/_next/static/*`,
88+
values: {
89+
'Cache-Control': 'public, max-age=31536000, immutable',
90+
},
91+
})
92+
}
93+
8094
export const copyStaticExport = async (ctx: PluginContext): Promise<void> => {
8195
await tracer.withActiveSpan('copyStaticExport', async () => {
8296
if (!ctx.exportDetail?.outDirectory) {

src/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import {
1111
copyStaticContent,
1212
copyStaticExport,
1313
publishStaticDir,
14+
setHeadersConfig,
1415
unpublishStaticDir,
1516
} from './build/content/static.js'
1617
import { clearStaleEdgeHandlers, createEdgeHandlers } from './build/functions/edge.js'
@@ -66,7 +67,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {
6667

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

7273
await verifyAdvancedAPIRoutes(ctx)
@@ -78,6 +79,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {
7879
copyPrerenderedContent(ctx),
7980
createServerHandler(ctx),
8081
createEdgeHandlers(ctx),
82+
setHeadersConfig(ctx),
8183
setImageConfig(ctx),
8284
])
8385
})

0 commit comments

Comments
 (0)