Skip to content

Commit 7e79ba7

Browse files
fix: include static files in the function bundle (#200)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent a4c49e2 commit 7e79ba7

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

src/build/content/server.ts

+15-4
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,27 @@ async function recreateNodeModuleSymlinks(src: string, dest: string, org?: strin
8181
}
8282

8383
export const copyNextDependencies = async (ctx: PluginContext): Promise<void> => {
84-
const srcDir = join(ctx.publishDir, 'standalone/node_modules')
85-
const destDir = join(ctx.serverHandlerDir, 'node_modules')
84+
const entries = await readdir(join(ctx.publishDir, 'standalone'))
8685

87-
await cp(srcDir, destDir, { recursive: true })
86+
await Promise.all(
87+
entries.map(async (entry) => {
88+
if (entry === 'package.json' || entry === '.next') {
89+
return
90+
}
91+
const src = join(ctx.publishDir, 'standalone', entry)
92+
const dest = join(ctx.serverHandlerDir, entry)
93+
await cp(src, dest, { recursive: true })
94+
}),
95+
)
8896

8997
// TODO: @Lukas Holzer test this in monorepos
9098
// use the node_modules tree from the process.cwd() and not the one from the standalone output
9199
// as the standalone node_modules are already wrongly assembled by Next.js.
92100
// see: https://github.com/vercel/next.js/issues/50072
93-
await recreateNodeModuleSymlinks(ctx.resolve('node_modules'), destDir)
101+
await recreateNodeModuleSymlinks(
102+
ctx.resolve('node_modules'),
103+
join(ctx.serverHandlerDir, 'node_modules'),
104+
)
94105
}
95106

96107
export const writeTagsManifest = async (ctx: PluginContext): Promise<void> => {

src/build/functions/server.ts

+1-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,7 @@ const writeHandlerManifest = async (ctx: PluginContext) => {
2323
name: 'Next.js Server Handler',
2424
generator: `${ctx.pluginName}@${ctx.pluginVersion}`,
2525
nodeBundler: 'none',
26-
includedFiles: [
27-
`${SERVER_HANDLER_NAME}*`,
28-
'package.json',
29-
'dist/**',
30-
'.next/**',
31-
'.netlify/**',
32-
'node_modules/**',
33-
],
26+
includedFiles: ['**'],
3427
includedFilesBasePath: ctx.serverHandlerDir,
3528
},
3629
version: 1,

tests/netlify-e2e.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,10 @@
138138
]
139139
},
140140
"test/e2e/prerender.test.ts": {
141-
"flakey": ["Prerender should handle on-demand revalidate for fallback: blocking"]
141+
"flakey": [
142+
"Prerender should handle on-demand revalidate for fallback: blocking",
143+
"Prerender should use correct caching headers for a revalidate page"
144+
]
142145
},
143146
"test/e2e/app-dir/app-routes/app-custom-route-base-path.test.ts": {
144147
"flakey": [

0 commit comments

Comments
 (0)