File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,20 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
77
77
} )
78
78
}
79
79
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
+
80
94
export const copyStaticExport = async ( ctx : PluginContext ) : Promise < void > => {
81
95
await tracer . withActiveSpan ( 'copyStaticExport' , async ( ) => {
82
96
if ( ! ctx . exportDetail ?. outDirectory ) {
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
11
11
copyStaticContent ,
12
12
copyStaticExport ,
13
13
publishStaticDir ,
14
+ setHeadersConfig ,
14
15
unpublishStaticDir ,
15
16
} from './build/content/static.js'
16
17
import { clearStaleEdgeHandlers , createEdgeHandlers } from './build/functions/edge.js'
@@ -66,7 +67,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {
66
67
67
68
// static exports only need to be uploaded to the CDN and setup /_next/image handler
68
69
if ( ctx . buildConfig . output === 'export' ) {
69
- return Promise . all ( [ copyStaticExport ( ctx ) , setImageConfig ( ctx ) ] )
70
+ return Promise . all ( [ copyStaticExport ( ctx ) , setHeadersConfig ( ctx ) , setImageConfig ( ctx ) ] )
70
71
}
71
72
72
73
await verifyAdvancedAPIRoutes ( ctx )
@@ -78,6 +79,7 @@ export const onBuild = async (options: NetlifyPluginOptions) => {
78
79
copyPrerenderedContent ( ctx ) ,
79
80
createServerHandler ( ctx ) ,
80
81
createEdgeHandlers ( ctx ) ,
82
+ setHeadersConfig ( ctx ) ,
81
83
setImageConfig ( ctx ) ,
82
84
] )
83
85
} )
You can’t perform that action at this time.
0 commit comments