-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
40 lines (35 loc) · 916 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
32
33
34
35
36
37
38
39
40
const ModuleFederationPlugin = require("webpack/lib/container/ModuleFederationPlugin");
module.exports = {
output: {
publicPath: "auto",
uniqueName: "angular1"
},
optimization: {
// Only needed to bypass a temporary bug
runtimeChunk: false
},
plugins: [
new ModuleFederationPlugin({
// For remotes (please adjust)
name: "angular1",
library: { type: "var", name: "angular1" },
filename: "remoteEntry.js",
exposes: {
'./web-components': './src/bootstrap.ts',
},
// For hosts (please adjust)
/*
remotes: {
'mfe1': "mfe1@http://localhost:3000/remoteEntry.js"
},
*/
shared: {
"@angular/core": { requiredVersion: "12.0.3" },
"@angular/common": { requiredVersion: "12.0.3" },
"@angular/router": { requiredVersion: "12.0.3" },
"rxjs": {}
}
}
)
],
};