-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.common.js
112 lines (111 loc) · 3.35 KB
/
webpack.common.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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssnanoWebpackPlugin = require('cssnano-webpack-plugin');
const ImageminWebpackPlugin = require('imagemin-webpack-plugin').default;
const ImageminMozjpeg = require('imagemin-mozjpeg');
const ImageminWebpWebpackPlugin = require('imagemin-webp-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const WorkboxPlugin = require('workbox-webpack-plugin');
const path = require('path');
module.exports = {
resolve: {
alias: {
src: path.resolve(__dirname, 'src'),
},
extensions: ['.js', '.jsx'],
},
entry: path.resolve(__dirname, 'src/index.js'),
devtool: 'source-map',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.css|\.s(c|a)ss$/,
exclude: '/node_modules/',
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
reloadAll: true,
},
},
'css-loader',
'postcss-loader',
'sass-loader',
],
},
{
test: /\.js$/,
exclude: '/node_modules/',
use: [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
},
},
],
},
],
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src/index.html'),
filename: 'index.html',
}),
new MiniCssExtractPlugin({
filename: 'index.css',
}),
new CssnanoWebpackPlugin({
sourceMap: true,
}),
new Dotenv(),
new WorkboxPlugin.InjectManifest({
swSrc: './src/worker.js',
swDest: 'worker.js',
}),
new ImageminWebpWebpackPlugin({
config: [
{
test: /\.(jpe?g|png)/,
options: {
quality: 50,
},
},
],
plugins: [
ImageminMozjpeg({
quality: 50,
progressive: true,
}),
],
overrideExtension: true,
}),
new ImageminWebpackPlugin({
plugins: [
ImageminMozjpeg({
quality: 50,
progressive: true,
}),
],
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, 'src/public/icons'),
to: path.resolve(__dirname, 'dist/icons'),
},
{
from: './src/manifest.json',
to: './manifest.json',
},
],
}),
],
};