Back to Nx

Migrate With Mf Import To New Package

packages/rspack/src/migrations/update-20-2-0/migrate-with-mf-import-to-new-package.md

22.7.1565 B
Original Source

Migrate withModuleFederation Import to New Package

Update the withModuleFederation import to use @nx/module-federation/rspack.

Sample Code Changes

Update import paths for withModuleFederation and withModuleFederationForSSR.

Before
ts
import {
  withModuleFederation,
  withModuleFederationForSSR,
} from '@nx/rspack/module-federation';
After
ts
import {
  withModuleFederation,
  withModuleFederationForSSR,
} from '@nx/module-federation/rspack';