File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
packages/open-next/src/plugins Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @opennextjs/aws " : patch
3+ ---
4+
5+ fix(edge): inline PagesManifest in edge bundle
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import {
1515 loadFunctionsConfigManifest ,
1616 loadHtmlPages ,
1717 loadMiddlewareManifest ,
18+ loadPagesManifest ,
1819 loadPrerenderManifest ,
1920 loadRoutesManifest ,
2021} from "../adapters/config/util.js" ;
@@ -166,6 +167,7 @@ ${contents}
166167 const AppPathsManifest = loadAppPathsManifest ( nextDir ) ;
167168 const AppPathRoutesManifest = loadAppPathRoutesManifest ( nextDir ) ;
168169 const FunctionsConfigManifest = loadFunctionsConfigManifest ( nextDir ) ;
170+ const PagesManifest = loadPagesManifest ( nextDir ) ;
169171
170172 const contents = `
171173 import path from "node:path";
@@ -190,6 +192,7 @@ ${contents}
190192 export const AppPathsManifest = ${ JSON . stringify ( AppPathsManifest ) } ;
191193 export const AppPathRoutesManifest = ${ JSON . stringify ( AppPathRoutesManifest ) } ;
192194 export const FunctionsConfigManifest = ${ JSON . stringify ( FunctionsConfigManifest ) } ;
195+ export const PagesManifest = ${ JSON . stringify ( PagesManifest ) } ;
193196
194197
195198 process.env.NEXT_BUILD_ID = BuildId;
You can’t perform that action at this time.
0 commit comments