-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
118 lines (107 loc) · 3.07 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Generated using webpack-cli https://github.com/webpack/webpack-cli
const pathLib = require("path");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const WorkboxWebpackPlugin = require("workbox-webpack-plugin");
const packageJson = require("./package.json");
const sourceDir = 'wbpkotpts';
const is_production = process.env.NODE_ENV == "production";
console.log('process.env.NODE_ENV: ', process.env.NODE_ENV);
const envCfg = is_production
? require("./env_cfg/env.cfg.prd.js")
: require("./env_cfg/env.cfg.dev.js");
const remoteList = [
'remote_libs',
];
const config = {
entry: "./src/main.js",
output: {
path: pathLib.resolve(__dirname, `./${sourceDir}/${packageJson.name}`),
},
module: {
rules: [
{
test: /\.(js|jsx)$/i,
loader: "babel-loader",
},
{
test: /\.less$/i,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"postcss-loader",
"less-loader"
],
},
{
test: /\.css$/i,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"postcss-loader"
],
},
{
test: /\.(eot|svg|ttf|woff|woff2|png|jpg|gif)$/i,
type: "asset",
},
// Add your rules for custom modules here
// Learn more about loaders from https://webpack.js.org/loaders/
],
},
plugins: [
new HtmlWebpackPlugin({
template: "index.html",
}),
new MiniCssExtractPlugin(),
// Add your plugins here
// Learn more about plugins from https://webpack.js.org/configuration/plugins/
new webpack.DefinePlugin({
'process.env.app_name': JSON.stringify(packageJson.name),
webpack_define_app_name: JSON.stringify(packageJson.name),
webpack_define_is_prd: JSON.stringify(is_production),
webpack_define_env_cfg: JSON.stringify(envCfg),
}),
new webpack.container.ModuleFederationPlugin({
name: `remote_${packageJson.name}`,
remotes: remoteList.reduce((retV, key, idx)=>{
let remoteItm = envCfg.mfRemoteMap[key];
if (!remoteItm) {
return retV;
}
let {
protocol,
hostname,
port,
path,
} = remoteItm;
retV[key] = `${key}@${protocol}//${hostname}:${port}${path}/mf.js`;
console.log( JSON.stringify(retV, null, 2));
return retV;
}, {}),
}),
],
};
module.exports = () => {
if (is_production) {
config.mode = "production";
config.plugins.push(new WorkboxWebpackPlugin.GenerateSW());
return config;
}
config.mode = "development";
// config.output.publicPath = `/${sourceDir}/${packageJson.name}`;
config.devServer = {
open: true,
// host: "localhost",
host: envCfg.devHost,
port: envCfg.devPort,
// proxy: {
// [`/${sourceDir}`]: {
// target: `http://${envCfg.devHost}:7799`,
// // changeOrigin: true,
// },
// },
};
return config;
};