44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
## Examples
|
|
|
|
The `setup-mf` generator is used to add Module Federation support to existing applications.
|
|
|
|
{% tabs %}
|
|
|
|
{% tab label="Convert to Host" %}
|
|
To convert an existing application to a host application, run the following
|
|
|
|
```bash
|
|
nx g setup-mf myapp --mfType=host --routing=true
|
|
```
|
|
|
|
{% /tab %}
|
|
|
|
{% tab label="Convert to Remote" %}
|
|
To convert an existing application to a remote application, run the following
|
|
|
|
```bash
|
|
nx g setup-mf myapp --mfType=remote --routing=true
|
|
```
|
|
|
|
{% /tab %}
|
|
|
|
{% tab label="Convert to Remote and attach to a host application" %}
|
|
To convert an existing application to a remote application and attach it to an existing host application name `myhostapp`, run the following
|
|
|
|
```bash
|
|
nx g setup-mf myapp --mfType=remote --routing=true --host=myhostapp
|
|
```
|
|
|
|
{% /tab %}
|
|
|
|
{% tab label="Convert to Host and attach to existing remote applications" %}
|
|
To convert an existing application to a host application and attaching existing remote applications named `remote1` and `remote2`, run the following
|
|
|
|
```bash
|
|
nx g setup-mf myapp --mfType=host --routing=true --remotes=remote1,remote2
|
|
```
|
|
|
|
{% /tab %}
|
|
|
|
{% /tabs %}
|