@vercel/microfrontends 0.19.0 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.cjs +1 -1
- package/dist/next/config.cjs +8 -6
- package/dist/next/config.cjs.map +1 -1
- package/dist/next/config.js +8 -6
- package/dist/next/config.js.map +1 -1
- package/package.json +1 -1
package/dist/next/config.js
CHANGED
|
@@ -1936,12 +1936,14 @@ function transform5(args) {
|
|
|
1936
1936
|
// this deployments host
|
|
1937
1937
|
...process.env.VERCEL_URL ? [formatDomainForServerAction(process.env.VERCEL_URL)] : [],
|
|
1938
1938
|
// default application host
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1939
|
+
...process.env.VERCEL_MICROFRONTENDS_PROJECTS ? [
|
|
1940
|
+
formatDomainForServerAction(
|
|
1941
|
+
getDomainFromEnvironment({
|
|
1942
|
+
app: defaultApplication,
|
|
1943
|
+
target: "production"
|
|
1944
|
+
})
|
|
1945
|
+
)
|
|
1946
|
+
] : [],
|
|
1945
1947
|
formatDomainForServerAction(defaultApplication.fallback.toString()),
|
|
1946
1948
|
// environment specific microfrontend hosts
|
|
1947
1949
|
...appsToAllow.flatMap((a) => [
|