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
@@ -321,6 +322,11 @@ export function getNormalizeShareItem(key: string) {
321
322
exportfunctionnormalizeModuleFederationOptions(
322
323
options: ModuleFederationOptions
323
324
): NormalizedModuleFederationOptions{
325
+
if(options.getPublicPath||options.publicPath){
326
+
warn(
327
+
`We are ignoring the getPublicPath and publicPath options because they are natively supported by Vite\nwith the "experimental.renderBuiltUrl" configuration https://vitejs.dev/guide/build#advanced-base-options`
328
+
);
329
+
}
324
330
return(config={
325
331
exposes: normalizeExposes(options.exposes),
326
332
filename: options.filename||'remoteEntry-[hash]',
@@ -332,7 +338,6 @@ export function normalizeModuleFederationOptions(
0 commit comments