@@ -15,13 +15,14 @@ import { validateConfig } from "./validateConfig.js";
15
15
*
16
16
* @param baseDir Directory where to look for the configuration.
17
17
* @param openNextConfigPath Override the default configuration when provided. Relative to baseDir.
18
- * @param nodeExternals Externals for the Node.js compilation.
18
+ * @param nodeExternals Coma separated list of Externals for the Node.js compilation.
19
+ * @param compileEdge Force compiling for the edge runtime when true
19
20
* @return The configuration and the build directory.
20
21
*/
21
22
export async function compileOpenNextConfig (
22
23
baseDir : string ,
23
24
openNextConfigPath ?: string ,
24
- nodeExternals ?: string ,
25
+ { nodeExternals = "" , compileEdge = false } = { } ,
25
26
) {
26
27
const sourcePath = path . join (
27
28
baseDir ,
@@ -32,7 +33,7 @@ export async function compileOpenNextConfig(
32
33
let configPath = compileOpenNextConfigNode (
33
34
sourcePath ,
34
35
buildDir ,
35
- nodeExternals ? nodeExternals . split ( "," ) : [ ] ,
36
+ nodeExternals . split ( "," ) ,
36
37
) ;
37
38
38
39
// On Windows, we need to use file:// protocol to load the config file using import()
@@ -52,13 +53,13 @@ export async function compileOpenNextConfig(
52
53
const usesEdgeRuntime =
53
54
( config . middleware ?. external && config . middleware . runtime !== "node" ) ||
54
55
Object . values ( config . functions || { } ) . some ( ( fn ) => fn . runtime === "edge" ) ;
55
- if ( ! usesEdgeRuntime ) {
56
+ if ( usesEdgeRuntime || compileEdge ) {
57
+ compileOpenNextConfigEdge ( sourcePath , buildDir , config . edgeExternals ?? [ ] ) ;
58
+ } else {
59
+ // Skip compiling for the edge runtime.
56
60
logger . debug (
57
61
"No edge runtime found in the open-next.config.ts. Using default config." ,
58
62
) ;
59
- //Nothing to do here
60
- } else {
61
- compileOpenNextConfigEdge ( sourcePath , buildDir , config . edgeExternals ?? [ ] ) ;
62
63
}
63
64
64
65
return { config, buildDir } ;
0 commit comments