0.0.0-next-20241230085648 • Published 1 year ago

@module-federation/rsbuild-plugin v0.0.0-next-20241230085648

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@module-federation/rsbuild-plugin

Example

npm install @module-federation/rsbuild-plugin -D
npm install @module-federation/enhanced

Rsbuild App

import { pluginModuleFederation } from '@module-federation/rsbuild-plugin';
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';

export default defineConfig({
  server: {
    port: 2000,
  },
  plugins: [
    pluginReact(),
    pluginModuleFederation({
      name: 'federation_consumer',
      remotes: {
        remote1: 'remote1@http://localhost:2001/mf-manifest.json',
      },
      shared: ['react', 'react-dom'],
    }),
  ],
});

Rslib Module

import { pluginModuleFederation } from '@module-federation/rsbuild-plugin';
import { defineConfig } from '@rslib/core';

export default defineConfig({
  lib: [
    // ...
    {
      format: 'mf',
      output: {
        distPath: {
          root: './dist/mf',
        },
        assetPrefix: 'http://localhost:3001/mf',
      },
      plugins: [
        // ...
        pluginModuleFederation({
          name: 'rslib_provider',
          exposes: {
            '.': './src/index.tsx',
          },
          shared: {
            react: {
              singleton: true,
            },
            'react-dom': {
              singleton: true,
            },
          },
        }),
      ],
    },
  ],
});
0.8.9

1 year ago

0.8.8

1 year ago

0.8.5

1 year ago

0.8.4

1 year ago

0.8.7

1 year ago

0.8.6

1 year ago

0.7.2

1 year ago

0.7.1

1 year ago

0.7.3

1 year ago

0.7.0

1 year ago

0.10.0

11 months ago

0.8.1

1 year ago

0.8.0

1 year ago

0.8.3

1 year ago

0.8.2

1 year ago

0.15.0

8 months ago

0.6.16

1 year ago

0.7.6

1 year ago

0.7.5

1 year ago

0.7.7

1 year ago

0.13.0

10 months ago

0.13.1

10 months ago

0.14.0

9 months ago

0.14.1

9 months ago

0.14.2

9 months ago

0.14.3

9 months ago

0.11.0

11 months ago

0.11.1

11 months ago

0.11.2

11 months ago

0.11.3

11 months ago

0.11.4

10 months ago

0.9.0

12 months ago

0.9.1

12 months ago

0.12.0

10 months ago

0.8.12

12 months ago

0.8.11

1 year ago

0.8.10

1 year ago

0.6.15

1 year ago

0.6.14

1 year ago

0.6.13

1 year ago

0.6.12

1 year ago

0.0.2

1 year ago