@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.
@@ -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 = path.normalize(`${publicPath}${client.moduleFederation.name}/`);
200
- browserPublicPath = path.normalize(`${browserPublicPath}${client.moduleFederation.name}/`);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/app-builder",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "Develop and build your React client-server projects, powered by typescript and webpack",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",