We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd31a44 commit 5852256Copy full SHA for 5852256
libs/nx-angular-mf/src/builders/build/index.ts
@@ -15,6 +15,12 @@ export async function* runBuilder(
15
16
const optionsMfe = await prepareConfig(defaultOptionsMfe, options, context);
17
18
+ if (!optionsMfe.deployUrl) {
19
+ throw new Error(
20
+ 'Deploy url is not defined. It is necessary for MFE. You should "deployUrl" options or set "deployUrlEnvName" in your config'
21
+ );
22
+ }
23
+
24
const mapShareObject = getMapName(
25
optionsMfe.shared,
26
optionsMfe.sharedMappings
0 commit comments