@gravity-ui/app-builder 0.32.1 → 0.32.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/dist/common/config.js +2 -2
- package/package.json +1 -1
package/dist/common/config.js
CHANGED
|
@@ -196,8 +196,8 @@ async function normalizeClientConfig(client, mode) {
|
|
|
196
196
|
let publicPath = client.publicPath || path.normalize(`${client.publicPathPrefix || ''}/build/`);
|
|
197
197
|
let browserPublicPath = (mode !== 'dev' && cdnConfig?.publicPath) || publicPath;
|
|
198
198
|
if (client.moduleFederation) {
|
|
199
|
-
publicPath =
|
|
200
|
-
browserPublicPath =
|
|
199
|
+
publicPath = `${publicPath}${client.moduleFederation.name}/`;
|
|
200
|
+
browserPublicPath = `${browserPublicPath}${client.moduleFederation.name}/`;
|
|
201
201
|
}
|
|
202
202
|
let transformCssWithLightningCss = Boolean(client.transformCssWithLightningCss);
|
|
203
203
|
if (client.moduleFederation?.isolateStyles && transformCssWithLightningCss) {
|