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 {
12
12
loadBuildId ,
13
13
loadConfig ,
14
14
loadConfigHeaders ,
15
+ loadFunctionsConfigManifest ,
15
16
loadHtmlPages ,
16
17
loadMiddlewareManifest ,
17
18
loadPrerenderManifest ,
@@ -166,6 +167,7 @@ ${contents}
166
167
const MiddlewareManifest = loadMiddlewareManifest ( nextDir ) ;
167
168
const AppPathsManifest = loadAppPathsManifest ( nextDir ) ;
168
169
const AppPathRoutesManifest = loadAppPathRoutesManifest ( nextDir ) ;
170
+ const FunctionsConfigManifest = loadFunctionsConfigManifest ( nextDir ) ;
169
171
170
172
const contents = `
171
173
import path from "node:path";
@@ -189,6 +191,7 @@ ${contents}
189
191
export const MiddlewareManifest = ${ JSON . stringify ( MiddlewareManifest ) } ;
190
192
export const AppPathsManifest = ${ JSON . stringify ( AppPathsManifest ) } ;
191
193
export const AppPathRoutesManifest = ${ JSON . stringify ( AppPathRoutesManifest ) } ;
194
+ export const FunctionsConfigManifest = ${ JSON . stringify ( FunctionsConfigManifest ) } ;
192
195
193
196
194
197
process.env.NEXT_BUILD_ID = BuildId;
You can’t perform that action at this time.
0 commit comments