You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/nextjs-mf/README.md
+16-25Lines changed: 16 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,18 +165,12 @@ new NextFederationPlugin({
165
165
extraOptions: {
166
166
debug: boolean, // `false` by default
167
167
exposePages: boolean, // `false` by default
168
-
enableImageLoaderFix: boolean, // `false` by default
169
-
enableUrlLoaderFix: boolean, // `false` by default
170
-
skipSharingNextInternals: boolean, // `false` by default
171
168
},
172
169
});
173
170
```
174
171
175
172
-`debug` – enables debug mode. It will print additional information about what is going on under the hood.
176
173
-`exposePages` – exposes automatically all nextjs pages for you and theirs `./pages-map`.
177
-
-`enableImageLoaderFix` – adds public hostname to all assets bundled by `nextjs-image-loader`. So if you serve remoteEntry from `http://example.com` then all bundled assets will get this hostname in runtime. It's something like Base URL in HTML but for federated modules.
178
-
-`enableUrlLoaderFix` – adds public hostname to all assets bundled by `url-loader`.
179
-
-`skipSharingNextInternals` – disables sharing of next internals. You can use it if you want to share next internals yourself or want to use this plugin on non next applications
180
174
181
175
## Demo
182
176
@@ -273,22 +267,23 @@ new NextFederationPlugin({
273
267
274
268
Ive added a util for dynamic chunk loading, in the event you need to load remote containers dynamically.
0 commit comments