我正在尝试使用 Angular 和 Webpack Module Federation 为微前端构建 POC。在此,我创建了一个 shell 应用程序和另一个 mfe1 应用程序,并在特定路由命中渲染该 mfe1,它按预期工作并渲染该应用程序。现在,我正在尝试创建另一个名为 mfe2 的应用程序并进行渲染。在这个 mfe2 中,我正在使用 Angular 元素创建一个 Web 组件并在 shell 应用程序中呈现它。当我这样做时,我面临以下问题
错误:已创建具有不同配置的平台。请先销毁它。
当下面的代码正在执行时
import('mfe2/web-component')
.then(_ => console.debug(`element loaded!`))
.catch(err => console.error(`error loading `, err));
我不明白确切的问题在哪里。我在下面添加所需的代码。
MFE2:
app.module.ts
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: []
})
export class AppModule {
constructor(private injector: Injector) {}
ngDoBootstrap() {
const ce = createCustomElement(AppComponent, {injector: this.injector});
customElements.define('mfe2-elem', ce);
}
}
webpack.config.js
module.exports = {
output: {
uniqueName: "mfe2",
publicPath: "auto"
},
optimization: {
runtimeChunk: false
},
resolve: {
alias: {
...sharedMappings.getAliases(),
}
},
plugins: [
new ModuleFederationPlugin({
// For remotes (please adjust)
name: "mfe2",
filename: "remoteEntry.js",
exposes: {
'./web-component': './src/bootstrap.ts',
},
// For hosts (please adjust)
// remotes: {
// "mfe1": "mfe1@http://localhost:3000/remoteEntry.js",
// },
shared: {
"@angular/core": { singleton: true, strictVersion: true },
"@angular/common": { singleton: true, strictVersion: true },
"@angular/common/http": { singleton: true, strictVersion: true },
"@angular/router": { singleton: true, strictVersion: true },
...sharedMappings.getDescriptors()
}
}),
sharedMappings.getPlugin()
],
};
贝壳:
在组件中渲染它:
@Component({
selector: 'app-mfe2element',
templateUrl: './mfe2element.component.html',
styleUrls: ['./mfe2element.component.scss']
})
export class Mfe2elementComponent implements AfterContentInit {
@ViewChild('vc', { read: ElementRef, static: true })
vc!: ElementRef;
constructor() { }
ngAfterContentInit(): void {
import('mfe2/web-component')
.then(_ => console.debug(`element loaded!`))
.catch(err => console.error(`error loading `, err));
// await import('mfe1/web-components');
// const element = document.createElement('mfe1-element');
// document.body.appendChild(element);
const element = document.createElement('mfe2-elem');
this.vc.nativeElement.appendChild(element);
}
}
webpack.config.js
module.exports = {
output: {
uniqueName: "shell"
},
optimization: {
// Only needed to bypass a temporary bug
runtimeChunk: false
},
plugins: [
new ModuleFederationPlugin({
// For remotes (please adjust)
// name: "shell",
// filename: "remoteEntry.js",
// exposes: {
// './Component': './/src/app/app.component.ts',
// },
// For hosts (please adjust)
remotes: {
"mfe1": "mfe1@http://localhost:3000/remoteEntry.js",
"mfe2": "mfe2@http://localhost:4000/remoteEntry.js",
},
shared: {
"@angular/core": { singleton: true, strictVersion: false },
"@angular/common": { singleton: true, strictVersion: false },
"@angular/router": { singleton: true, strictVersion: false },
...sharedMappings.getDescriptors()
}
}),
sharedMappings.getPlugin(),
],
};
请帮我解决这个问题。
谢谢...