File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
libs/native-federation/src/builders/build Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,10 @@ export async function* runBuilder(
122
122
options . baseHref = nfOptions . baseHref ;
123
123
}
124
124
125
+ if ( nfOptions . outputPath ) {
126
+ options . outputPath = nfOptions . outputPath ;
127
+ }
128
+
125
129
const rebuildEvents = new RebuildHubs ( ) ;
126
130
127
131
const adapter = createAngularBuildAdapter ( options , context , rebuildEvents ) ;
Original file line number Diff line number Diff line change @@ -12,5 +12,6 @@ export interface NfBuilderSchema extends JsonObject {
12
12
skipHtmlTransform : boolean ;
13
13
esmsInitOptions : ESMSInitOptions ;
14
14
baseHref ?: string ;
15
+ outputPath ?: string ;
15
16
ssr : boolean ;
16
17
} // eslint-disable-line
Original file line number Diff line number Diff line change 46
46
"baseHref" : {
47
47
"type" : " string"
48
48
},
49
+ "outputPath" : {
50
+ "type" : " string"
51
+ },
49
52
"esmsInitOptions" : {
50
53
"type" : " object" ,
51
54
"description" : " Options for esms-module-shims https://github.com/guybedford/es-module-shims?tab=readme-ov-file#init-options" ,
You can’t perform that action at this time.
0 commit comments