-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
204 lines (188 loc) Β· 4.65 KB
/
webpack.config.js
File metadata and controls
204 lines (188 loc) Β· 4.65 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
const webpack = require('webpack');
const path = require('path');
const HTMLWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const PrettierPlugin = require('prettier-webpack-plugin');
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const isDev = process.env.NODE_ENV === 'development';
const isProd = !isDev;
const setOptimization = () => {
const config = {
splitChunks: {
cacheGroups: {
vendors: {},
},
chunks: 'all',
},
};
if (isProd) {
config.minimize = true;
config.minimizer = [`...`, new CssMinimizerPlugin()];
}
return config;
};
const getPlugins = () => {
const plugins = [
new HTMLWebpackPlugin({
title: 'Webpack boilerplate',
template: './template.html',
favicon: path.resolve(__dirname, 'src/assets/favicon.ico'),
filename: 'index.html',
cache: false,
minify: {
collapseWhitespace: isProd,
},
}),
new CleanWebpackPlugin(),
// new CopyPlugin({
// patterns: [
// {
// from: path.resolve(__dirname, 'src/assets/favicon.ico'),
// to: path.resolve(__dirname, 'dist'),
// },
// {
// from: path.resolve(__dirname, 'src/assets/images'),
// to: path.resolve(__dirname, 'dist/images'),
// },
// ],
// }),
new PrettierPlugin(),
new MiniCssExtractPlugin({ filename: setFilename('css') }),
new ESLintPlugin(),
new LodashModuleReplacementPlugin(),
new webpack.HotModuleReplacementPlugin(),
];
if (isProd) {
plugins.push(new BundleAnalyzerPlugin());
}
return plugins;
};
const setFilename = (extention) =>
`[name]${isProd ? '.[contenthash]' : ''}.${extention}`;
const setCssLoader = (extra) => {
const loaders = [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: path.resolve(__dirname, 'dist'),
},
},
// 'style-loader', inline styles, commented because MiniCssExtractPlugin
'css-loader',
];
if (extra) {
loaders.push(extra);
}
return loaders;
};
const getBabelLoader = (preset) => {
const presets = [
[
'@babel/preset-env',
{
useBuiltIns: 'entry',
// targets: '> 0.25%, not dead',
corejs: 3,
},
],
];
if (preset) {
presets.push(preset);
}
const params = {
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets,
},
},
],
};
return params;
};
module.exports = {
target: isDev ? 'web' : 'browserslist', // hrm hack https://qna.habr.com/answer?answer_id=1813939#answers_list_answer https://github.com/webpack/webpack-dev-server/issues/2758
context: path.resolve(__dirname, 'src'),
entry: {
main: './index.jsx',
analytics: './analytics.ts',
},
output: {
filename: setFilename('js'),
path: path.resolve(__dirname, 'dist'),
},
resolve: {
// extensions: ['*', '.js'],
alias: {
'@': path.resolve(__dirname, 'src'),
'@models': path.resolve(__dirname, 'src/models'),
'@assets': path.resolve(__dirname, 'src/assets'),
'@images': path.resolve(__dirname, 'src/assets/images'),
},
},
optimization: setOptimization(),
devServer: {
static: true,
// contentBase: path.join(__dirname, 'src/assets'),
// open: true,
hot: isDev,
port: 4200,
},
devtool: isDev ? 'source-map' : '',
plugins: getPlugins(),
module: {
rules: [
{
test: /\.js$/,
...getBabelLoader(),
},
{
test: /\.ts$/,
...getBabelLoader('@babel/preset-typescript'),
},
{
test: /\.jsx$/,
...getBabelLoader('@babel/preset-react'),
},
{
test: /\.css$/,
use: setCssLoader(),
},
{
test: /\.(sa|sc)ss$/,
use: setCssLoader('sass-loader'),
},
{
test: /\.less$/,
use: setCssLoader('less-loader'),
},
{
test: /\.(woff(2)?|ttf|eot)$/i,
type: 'asset/resource',
},
{
test: /\.(?:ico|gif|png|jpg|jpeg)$/i,
type: 'asset/resource',
},
{
test: /\.svg$/,
type: 'asset/inline', // base64
},
{
test: /\.xml$/,
use: 'xml-loader',
},
{
test: /\.csv$/,
use: 'csv-loader',
},
],
},
};