forked from DataDog/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
executable file
·41 lines (34 loc) · 1010 Bytes
/
webpack.prod.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
const merge = require('webpack-merge');
const TerserPlugin = require('terser-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const common = require('./webpack.common.js');
const prodConfig = (env) => merge(common(env), {
mode: 'production',
output: {
filename: ({ chunk: { name } }) => {
return name === 'dd-browser-logs-rum' ? '[name].js' : '[name].[contenthash:5].js';
}
},
optimization: {
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true
}),
new MiniCssExtractPlugin({
filename: '[name].[contenthash:5].css'
}),
new OptimizeCSSAssetsPlugin({}),
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [
"public/**/*.js",
"public/**/*.css",
"data/manifest.json"
]})
]
}
});
module.exports = prodConfig;