forked from Azure/api-management-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.build.js
32 lines (31 loc) · 972 Bytes
/
webpack.build.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
const webpack = require("webpack");
const merge = require("webpack-merge");
const designerConfig = require("./webpack.designer.js");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
module.exports = merge(designerConfig, {
mode: "production",
optimization: {
minimizer: [
new TerserPlugin({
sourceMap: false,
terserOptions: {
mangle: false,
output: {
comments: false,
}
}
})
]
},
plugins: [
new CleanWebpackPlugin(),
new CopyWebpackPlugin([
{ from: `./src/config.design.json`, to: `./config.json` }
]),
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production")
})
]
});