-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
167 lines (150 loc) · 5.11 KB
/
webpack.config.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// import plugins
const path = require('path');
const webpack = require('webpack');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const ImageminPlugin = require('imagemin-webpack-plugin').default;
/**
* Base webpack configuration
*
* @param env -> env parameters
* @param argv -> CLI arguments, 'argv.mode' is the current webpack mode (development | production)
* @returns object
*/
module.exports = (env, argv) => {
let isProduction = (argv.mode === 'production');
let config = {
// absolute path to the base directory
context: path.resolve(__dirname, "src"),
// development server with hot-reload
devServer: {
publicPath: '/assets/',
watchContentBase: true,
compress: true,
},
// entry files to compile (relative to the base dir)
entry: [
"./js/app.js",
"./scss/app.scss",
],
// enable development source maps
// * will be overwritten by 'source-maps' in production mode
devtool: "inline-source-map",
// path to store compiled JS bundle
output: {
// bundle relative name
filename: "js/app.js",
// base build directory
path: path.resolve(__dirname, "assets"),
// path to build relative asset links
publicPath: "../"
},
// plugins configurations
plugins: [
// save compiled SCSS into separated CSS file
new MiniCssExtractPlugin({
filename: "css/style.css"
}),
// copy static assets directory
new CopyPlugin([
{from: 'static', to: 'static'}
]),
// image optimization
new ImageminPlugin({
// disable for dev builds
disable: !isProduction,
test: /\.(jpe?g|png|gif)$/i,
pngquant: {quality: '70-85'},
optipng: {optimizationLevel: 9}
}),
// provide jQuery and Popper.js dependencies
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
jquery: 'jquery',
'window.jQuery': 'jquery',
Popper: ['popper.js', 'default']
}),
],
// production mode optimization
optimization: {
minimizer: [
// CSS optimizer
new OptimizeCSSAssetsPlugin(),
// JS optimizer by default
new TerserPlugin(),
],
},
// custom loaders configuration
module: {
rules: [
// styles loader
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader",
"sass-loader"
],
},
// images loader
{
test: /\.(png|jpe?g|gif)$/,
loaders: [
{
loader: "file-loader",
options: {
name: "img/[name].[ext]"
}
},
{
loader: 'image-webpack-loader',
options: {
disable: !isProduction,
mozjpeg: {
progressive: true,
quality: 65
},
pngquant: {
quality: '65-90',
speed: 4
},
optipng: {enabled: false},
gifsicle: {interlaced: false},
webp: {quality: 75}
}
},
],
},
// fonts loader
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: "file-loader",
options: {
name: "fonts/[name].[ext]"
}
},
],
},
// svg inline 'data:image' loader
{
test: /\.svg$/,
loader: "svg-url-loader"
},
]
},
};
// PRODUCTION ONLY configuration
if (isProduction) {
config.plugins.push(
// clean 'assets' directory
new CleanWebpackPlugin()
);
}
return config;
};