4
4
import fs from "node:fs" ;
5
5
import path from "node:path" ;
6
6
7
+ import { loadMiddlewareManifest } from "@opennextjs/aws/adapters/config/util.js" ;
7
8
import { bundleNextServer } from "@opennextjs/aws/build/bundleNextServer.js" ;
8
9
import { compileCache } from "@opennextjs/aws/build/compileCache.js" ;
9
10
import { copyTracedFiles } from "@opennextjs/aws/build/copyTracedFiles.js" ;
10
- import { generateEdgeBundle } from "@opennextjs/aws/build/edge/createEdgeBundle.js" ;
11
+ import { copyMiddlewareResources , generateEdgeBundle } from "@opennextjs/aws/build/edge/createEdgeBundle.js" ;
11
12
import * as buildHelper from "@opennextjs/aws/build/helper.js" ;
12
13
import { installDependencies } from "@opennextjs/aws/build/installDeps.js" ;
13
14
import type { CodePatcher } from "@opennextjs/aws/build/patch/codePatcher.js" ;
@@ -138,13 +139,11 @@ async function generateBundle(
138
139
// `.next/standalone/package/path` (ie. `.next`, `server.js`).
139
140
// We need to output the handler file inside the package path.
140
141
const packagePath = buildHelper . getPackagePath ( options ) ;
141
- fs . mkdirSync ( path . join ( outputPath , packagePath ) , { recursive : true } ) ;
142
+ const outPackagePath = path . join ( outputPath , packagePath ) ;
143
+ fs . mkdirSync ( outPackagePath , { recursive : true } ) ;
142
144
143
145
const ext = fnOptions . runtime === "deno" ? "mjs" : "cjs" ;
144
- fs . copyFileSync (
145
- path . join ( options . buildDir , `cache.${ ext } ` ) ,
146
- path . join ( outputPath , packagePath , "cache.cjs" )
147
- ) ;
146
+ fs . copyFileSync ( path . join ( options . buildDir , `cache.${ ext } ` ) , path . join ( outPackagePath , "cache.cjs" ) ) ;
148
147
149
148
if ( fnOptions . runtime === "deno" ) {
150
149
addDenoJson ( outputPath , packagePath ) ;
@@ -153,7 +152,7 @@ async function generateBundle(
153
152
// Bundle next server if necessary
154
153
const isBundled = fnOptions . experimentalBundledNextServer ?? false ;
155
154
if ( isBundled ) {
156
- await bundleNextServer ( path . join ( outputPath , packagePath ) , appPath , {
155
+ await bundleNextServer ( outPackagePath , appPath , {
157
156
minify : options . minify ,
158
157
} ) ;
159
158
}
@@ -162,12 +161,16 @@ async function generateBundle(
162
161
if ( ! config . middleware ?. external ) {
163
162
fs . copyFileSync (
164
163
path . join ( options . buildDir , "middleware.mjs" ) ,
165
- path . join ( outputPath , packagePath , "middleware.mjs" )
164
+ path . join ( outPackagePath , "middleware.mjs" )
166
165
) ;
166
+
167
+ const middlewareManifest = loadMiddlewareManifest ( path . join ( options . appBuildOutputPath , ".next" ) ) ;
168
+
169
+ copyMiddlewareResources ( options , middlewareManifest . middleware [ "/" ] , outPackagePath ) ;
167
170
}
168
171
169
172
// Copy open-next.config.mjs
170
- buildHelper . copyOpenNextConfig ( options . buildDir , path . join ( outputPath , packagePath ) , true ) ;
173
+ buildHelper . copyOpenNextConfig ( options . buildDir , outPackagePath , true ) ;
171
174
172
175
// Copy env files
173
176
buildHelper . copyEnvFile ( appBuildOutputPath , packagePath , outputPath ) ;
@@ -241,7 +244,7 @@ async function generateBundle(
241
244
242
245
openNextEdgePlugins ( {
243
246
nextDir : path . join ( options . appBuildOutputPath , ".next" ) ,
244
- isInCloudfare : true ,
247
+ isInCloudflare : true ,
245
248
} ) ,
246
249
] ;
247
250
@@ -322,7 +325,7 @@ function addMonorepoEntrypoint(outputPath: string, packagePath: string) {
322
325
323
326
fs . writeFileSync (
324
327
path . join ( outputPath , "index.mjs" ) ,
325
- `export * from "./${ normalizePath ( packagePath ) } /index.mjs";`
328
+ `export { handler } from "./${ normalizePath ( packagePath ) } /index.mjs";`
326
329
) ;
327
330
}
328
331
0 commit comments