-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.production.js
33 lines (32 loc) · 1.01 KB
/
webpack.production.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
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CspHtmlWebpackPlugin = require("csp-html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const { merge } = require("webpack-merge");
const base = require("./webpack.config");
const path = require("path");
module.exports = merge(base, {
mode: "production",
devtool: "nosources-source-map", //https://webpack.js.org/configuration/devtool/ && https://github.com/webpack/webpack/issues/5627#issuecomment-389492939
plugins: [
new MiniCssExtractPlugin(),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, "app/src/index-prod.html"),
filename: "index-prod.html"
}),
new CspHtmlWebpackPlugin(
{
"base-uri": ["'self'"],
"object-src": ["'none'"],
"script-src": ["'self'"],
"style-src": ["'self'"],
"frame-src": ["'none'"],
"worker-src": ["'none'"]
},
{
hashEnabled: {
"style-src": false
}
}
)
]
});