File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
packages/open-next/src/plugins Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
1212 loadBuildId ,
1313 loadConfig ,
1414 loadConfigHeaders ,
15+ loadFunctionsConfigManifest ,
1516 loadHtmlPages ,
1617 loadMiddlewareManifest ,
1718 loadPrerenderManifest ,
@@ -166,6 +167,7 @@ ${contents}
166167 const MiddlewareManifest = loadMiddlewareManifest ( nextDir ) ;
167168 const AppPathsManifest = loadAppPathsManifest ( nextDir ) ;
168169 const AppPathRoutesManifest = loadAppPathRoutesManifest ( nextDir ) ;
170+ const FunctionsConfigManifest = loadFunctionsConfigManifest ( nextDir ) ;
169171
170172 const contents = `
171173 import path from "node:path";
@@ -189,6 +191,7 @@ ${contents}
189191 export const MiddlewareManifest = ${ JSON . stringify ( MiddlewareManifest ) } ;
190192 export const AppPathsManifest = ${ JSON . stringify ( AppPathsManifest ) } ;
191193 export const AppPathRoutesManifest = ${ JSON . stringify ( AppPathRoutesManifest ) } ;
194+ export const FunctionsConfigManifest = ${ JSON . stringify ( FunctionsConfigManifest ) } ;
192195
193196
194197 process.env.NEXT_BUILD_ID = BuildId;
You can’t perform that action at this time.
0 commit comments