-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
99 lines (98 loc) · 2.8 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
const path = require('path');
const glob = require('glob');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const ImageminPlugin = require('imagemin-webpack-plugin').default;
const SpriteLoaderPlugin = require('svg-sprite-loader/plugin');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'public')
},
optimization: {
minimizer: [
new TerserJSPlugin({}),
new OptimizeCSSAssetsPlugin({})
]
},
devServer: {
contentBase: path.resolve(__dirname, 'public'),
compress: true,
// host: '192.168.42.222',
port: 9000
},
plugins: [
new CleanWebpackPlugin(),
...glob.sync('./src/*.html')
.map(htmlFile => {
return new HtmlWebpackPlugin({
filename: path.basename(htmlFile),
template: htmlFile,
minify: {
collapseWhitespace: true,
removeComments: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true
}
});
}),
new MiniCssExtractPlugin({
filename: 'style.css'
}),
new CopyPlugin([
{
from: path.resolve(__dirname, 'src/fonts'),
to: path.resolve(__dirname, 'public/fonts')
},
{
from: path.resolve(__dirname, 'src/img/webp'),
to: path.resolve(__dirname, 'public/img/webp')
},
{
from: path.resolve(__dirname, 'src/img/*.{png,jpg}'),
to: path.resolve(__dirname, 'public/img/[name].[ext]')
},
{
from: path.resolve(__dirname, 'src/favicon/*.{png,svg}'),
to: path.resolve(__dirname, 'public/favicon/[name].[ext]')
},
{
from: path.resolve(__dirname, 'src/favicon/*.{xml,webmanifest}'),
to: path.resolve(__dirname, 'public/[name].[ext]')
},
{
from: path.resolve(__dirname, 'src/favicon/favicon.ico'),
to: path.resolve(__dirname, 'public/[name].[ext]')
}
]),
new ImageminPlugin({
test: /\.svg$/i
}),
new SpriteLoaderPlugin({
plainSprite: true
})
],
module: {
rules: [
{
test: /\.scss$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'postcss-loader', 'sass-loader']
},
{
test: /\.svg$/,
loader: 'svg-sprite-loader',
options: {
extract: true,
spriteFilename: 'img/svg/sprite.svg'
}
}
]
}
}