forked from manfredsteyer/angular-app2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
31 lines (28 loc) · 923 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const ModuleFederationPlugin = require("webpack/lib/container/ModuleFederationPlugin");
module.exports = {
output: {
publicPath: "auto",
uniqueName: "angular2"
},
optimization: {
// Only needed to bypass a temporary bug
runtimeChunk: false
},
plugins: [
new ModuleFederationPlugin({
// For remotes (please adjust)
name: "angular2",
library: { type: "var", name: "angular2" },
filename: "remoteEntry.js",
exposes: {
'./web-components': './src/bootstrap.ts',
},
shared: {
"@angular/core": { requiredVersion:'12.0.3' },
"@angular/common": { requiredVersion:'12.0.3' },
"@angular/router": { requiredVersion:'12.0.3' },
"rxjs": { }
}
})
],
};