forked from camptocamp/ngeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
81 lines (77 loc) · 1.41 KB
/
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
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
const webpack = require('webpack');
const TerserPlugin = require('terser-webpack-plugin');
const resourcesRule = {
test: /\.(jpeg|png|ico|cur|eot|ttf|woff|woff2)$/,
use: {
loader: 'file-loader',
options: {
name: '[name].[hash:6].[ext]'
}
}
};
const svgRule = {
test: /\.svg$/,
oneOf: [{
resourceQuery: /url/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[hash:6].[ext]'
},
},
'svgo-loader',
]
}, {
resourceQuery: /viewbox/,
use: [
{
loader: 'svg-inline-loader',
options: {
removeSVGTagAttrs: false,
},
},
'./buildtools/svg-viewbox-loader',
'svgo-loader',
]
}, {
use: [
{
loader: 'svg-inline-loader',
options: {
removeSVGTagAttrs: false,
},
},
'svgo-loader',
]
}]
};
module.exports = function() {
return {
mode: 'production',
devtool: 'source-map',
output: {
filename: '[name].[chunkhash:6].js'
},
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
module: {
rules: [
resourcesRule,
svgRule,
]
},
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
sourceMap: true,
terserOptions: {
compress: false
}
})
]
},
};
};