@vercel/microfrontends 1.5.0-canary.1 → 1.5.0-canary.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/microfrontends
2
2
 
3
+ ## 1.5.0-canary.2
4
+
5
+ ### Patch Changes
6
+
7
+ - add back asset prefix image change
8
+
3
9
  ## 1.5.0-canary.1
4
10
 
5
11
  ### Patch Changes
package/dist/bin/cli.cjs CHANGED
@@ -30,7 +30,7 @@ var import_env = require("@next/env");
30
30
  // package.json
31
31
  var package_default = {
32
32
  name: "@vercel/microfrontends",
33
- version: "1.5.0-canary.1",
33
+ version: "1.5.0-canary.2",
34
34
  private: false,
35
35
  description: "Defines configuration and utilities for microfrontends development",
36
36
  keywords: [
@@ -1501,6 +1501,10 @@ function transform(args) {
1501
1501
  );
1502
1502
  }
1503
1503
  next.assetPrefix = assetPrefix;
1504
+ next.images = {
1505
+ ...next.images,
1506
+ path: `${assetPrefix}/_next/image`
1507
+ };
1504
1508
  return {
1505
1509
  next
1506
1510
  };