@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/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<picture>
|
|
2
|
-
<source srcset="
|
|
3
|
-
<source srcset="
|
|
4
|
-
<img src="
|
|
2
|
+
<source srcset="https://assets.vercel.com/image/upload/v1689795055/docs-assets/static/docs/microfrontends/mfe-banner-dark.png" media="(prefers-color-scheme: dark)">
|
|
3
|
+
<source srcset="https://assets.vercel.com/image/upload/v1689795055/docs-assets/static/docs/microfrontends/mfe-banner-light.png" media="(prefers-color-scheme: light)">
|
|
4
|
+
<img src="https://assets.vercel.com/image/upload/v1689795055/docs-assets/static/docs/microfrontends/mfe-banner-light.png" alt="hero banner">
|
|
5
5
|
</picture>
|
|
6
6
|
|
|
7
7
|
# `@vercel/microfrontends`
|
package/dist/bin/cli.cjs
CHANGED
|
@@ -29,7 +29,7 @@ var import_commander = require("commander");
|
|
|
29
29
|
// package.json
|
|
30
30
|
var package_default = {
|
|
31
31
|
name: "@vercel/microfrontends",
|
|
32
|
-
version: "0.
|
|
32
|
+
version: "1.0.0",
|
|
33
33
|
private: false,
|
|
34
34
|
description: "Defines configuration and utilities for microfrontends development",
|
|
35
35
|
keywords: [
|
|
@@ -39,7 +39,7 @@ var package_default = {
|
|
|
39
39
|
homepage: "https://vercel.com/docs/microfrontends",
|
|
40
40
|
repository: {
|
|
41
41
|
type: "git",
|
|
42
|
-
url: "https://github.com/vercel/
|
|
42
|
+
url: "https://github.com/vercel/microfrontends.git",
|
|
43
43
|
directory: "packages/microfrontends"
|
|
44
44
|
},
|
|
45
45
|
sideEffects: false,
|
package/dist/next/config.cjs
CHANGED
|
@@ -1714,17 +1714,17 @@ function transform4(args) {
|
|
|
1714
1714
|
if (!app.isDefault()) {
|
|
1715
1715
|
rewrites.set(`/${app.getAssetPrefix()}/_next/:path+`, {
|
|
1716
1716
|
destination: {
|
|
1717
|
-
pathname:
|
|
1717
|
+
pathname: "/_next/:path+"
|
|
1718
1718
|
}
|
|
1719
1719
|
});
|
|
1720
1720
|
rewrites.set(`/${app.getAssetPrefix()}/.well-known/vercel/flags`, {
|
|
1721
1721
|
destination: {
|
|
1722
|
-
pathname:
|
|
1722
|
+
pathname: "/.well-known/vercel/flags"
|
|
1723
1723
|
}
|
|
1724
1724
|
});
|
|
1725
1725
|
rewrites.set(`/${app.getAssetPrefix()}/_vercel/:path*`, {
|
|
1726
1726
|
destination: {
|
|
1727
|
-
pathname:
|
|
1727
|
+
pathname: "/_vercel/:path*"
|
|
1728
1728
|
}
|
|
1729
1729
|
});
|
|
1730
1730
|
}
|