-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
151 lines (141 loc) · 3.12 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
const path = require('path')
const {CleanWebpackPlugin} = require('clean-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const TerserPlugin = require('terser-webpack-plugin')
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
const fs = require('fs')
const webpack = require('webpack')
const isDev = process.env.NODE_ENV === 'development'
const isProd = !isDev
const optimization = () => {
const optimizationObj = {}
if (isProd) {
optimizationObj.minimizer = [
new CssMinimizerPlugin(),
new TerserPlugin()
]
}
return optimizationObj
}
const filename = ext => isDev ? `bundle.${ext}` : `bundle.[hash].${ext}`
const jsLoaders = () => {
const loaders = [
{
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
]
if (isDev) {
loaders.push('eslint-loader')
}
return loaders
}
const PAGES_DIR = path.resolve(__dirname, 'src', 'pages')
const PAGES = fs.readdirSync(PAGES_DIR).filter(filename => filename.endsWith('.pug'))
module.exports = {
context: path.resolve(__dirname, 'src'),
entry: ['@babel/polyfill', './js/index.js'],
mode: 'development',
output: {
filename: filename('js'),
path: path.resolve(__dirname, 'dist')
},
devServer: {
open: true,
hot: true,
contentBase: path.resolve(__dirname, 'src'),
watchContentBase: true
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src'),
'@images': path.resolve(__dirname, 'src', 'images')
}
},
devtool: isDev ? 'source-map' : false,
optimization: optimization(),
plugins: [
new CleanWebpackPlugin(),
...PAGES.map(page => new HtmlWebpackPlugin({
template: path.resolve(PAGES_DIR, page),
filename: `./${page.replace(/\.pug/, '.html')}`,
minify: {
collapseWhitespace: isProd
}
})),
// new HtmlWebpackPlugin({
// template: path.resolve(__dirname, 'src', 'index.html')
// }),
new CopyPlugin({
patterns:
[
{
from: path.resolve(__dirname, 'src', 'images'),
to: path.resolve(__dirname, 'dist', 'images')
},
{
from: path.resolve(__dirname, 'src', 'server'),
to: path.resolve(__dirname, 'dist')
}
]
}),
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
}),
new MiniCssExtractPlugin({
filename: filename('css')
}),
],
module: {
rules: [
{
test: /\.pug$/,
use: 'pug-loader'
},
{
test: /\.(ttf|eot|woff|woff2)$/,
use: {
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts',
publicPath: 'fonts',
}
}
},
{
test: /\.(jpg|png|svg|jpf|webp)$/,
use: {
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'images',
publicPath: 'images',
}
}
},
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, 'css-loader']
},
{
test: /\.s[ac]ss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
],
},
{
test: /\.m?js$/,
exclude: /node_modules/,
use: jsLoaders()
},
]
}
}