-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwebpack.production.js
84 lines (76 loc) · 2 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
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
const path = require('path');
const glob = require('glob');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin')
const TerserPlugin = require('terser-webpack-plugin');
const PurgecssPlugin = require('purgecss-webpack-plugin');
const ImageminPlugin = require('imagemin-webpack-plugin').default;
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
module.exports = () => ({
output: {
filename: '[name].[contenthash].js'
},
module: {
rules: [
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node_modules/],
use: {
loader: 'elm-webpack-loader',
options: {
optimize: true,
},
},
},
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
'sass-loader',
],
}
]
},
optimization: {
minimizer: [
// https://elm-lang.org/0.19.0/optimize
new TerserPlugin({
extractComments: false,
terserOptions: {
mangle: false,
compress: {
pure_funcs: ['F2','F3','F4','F5','F6','F7','F8','F9','A2','A3','A4','A5','A6','A7','A8','A9'],
pure_getters: true,
keep_fargs: false,
unsafe_comps: true,
unsafe: true,
},
},
}),
new TerserPlugin({
extractComments: false,
terserOptions: { mangle: true },
}),
],
},
plugins: [
new MiniCssExtractPlugin({
filename: 'assets/css/[name].[contenthash].css',
}),
new PurgecssPlugin({
paths: glob.sync(path.join(__dirname, '../src/**/*.elm'), { nodir: true }),
}),
new CopyWebpackPlugin({
patterns: [
{from: 'src/assets/images', to: 'assets/images'},
]
}),
new ImageminPlugin({
test: /\.(jpe?g|png|gif|svg)$/i,
cache: true,
}),
new OptimizeCSSAssetsPlugin()
]
});