@vercel/microfrontends 0.19.6 → 1.0.0
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/README.md +3 -3
- package/dist/bin/cli.cjs +2 -2
- package/dist/next/config.cjs +3 -3
- package/dist/next/config.cjs.map +1 -1
- package/dist/next/config.js +3 -3
- package/dist/next/config.js.map +1 -1
- package/package.json +2 -2
package/dist/next/config.js
CHANGED
|
@@ -1680,17 +1680,17 @@ function transform4(args) {
|
|
|
1680
1680
|
if (!app.isDefault()) {
|
|
1681
1681
|
rewrites.set(`/${app.getAssetPrefix()}/_next/:path+`, {
|
|
1682
1682
|
destination: {
|
|
1683
|
-
pathname:
|
|
1683
|
+
pathname: "/_next/:path+"
|
|
1684
1684
|
}
|
|
1685
1685
|
});
|
|
1686
1686
|
rewrites.set(`/${app.getAssetPrefix()}/.well-known/vercel/flags`, {
|
|
1687
1687
|
destination: {
|
|
1688
|
-
pathname:
|
|
1688
|
+
pathname: "/.well-known/vercel/flags"
|
|
1689
1689
|
}
|
|
1690
1690
|
});
|
|
1691
1691
|
rewrites.set(`/${app.getAssetPrefix()}/_vercel/:path*`, {
|
|
1692
1692
|
destination: {
|
|
1693
|
-
pathname:
|
|
1693
|
+
pathname: "/_vercel/:path*"
|
|
1694
1694
|
}
|
|
1695
1695
|
});
|
|
1696
1696
|
}
|