-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
196 lines (181 loc) · 4.63 KB
/
webpack.config.js
File metadata and controls
196 lines (181 loc) · 4.63 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
const path = require('path')
const fs = require('fs')
const ifaces = require('os').networkInterfaces()
const webpack = require('webpack')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const HtmlBeautifyPlugin = require('html-beautify-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const isDevMode = process.env.NODE_ENV !== 'production'
const isProdMode = !isDevMode
const PATHS = {
src: path.resolve(__dirname, 'src'),
dist: path.resolve(__dirname, 'dist'),
assets: 'assets/',
pages: path.resolve(__dirname, 'src/pug/pages')
}
// Pages const for HtmlWebpackPlugin
const PAGES = fs.readdirSync(PATHS.pages).filter(fileName => fileName.endsWith('.pug'))
const plugins = () => {
const arr = [
new CleanWebpackPlugin(),
...PAGES.map(page => new HtmlWebpackPlugin({
template: `${PATHS.pages}/${page}`,
filename: `./${page.replace(/\.pug/, '.html')}`,
minify: {
html5: isProdMode,
collapseWhitespace: isProdMode,
minifyCSS: isProdMode,
minifyJS: isProdMode,
minifyURLs: false,
removeAttributeQuotes: isProdMode,
removeComments: isProdMode,
removeEmptyAttributes: isProdMode,
removeOptionalTags: isProdMode,
removeRedundantAttributes: isProdMode,
removeScriptTypeAttributes: isProdMode,
removeStyleLinkTypeAttributese: isProdMode,
useShortDoctype: isProdMode
}
})),
new MiniCssExtractPlugin({
filename: isDevMode ? 'css/[name].css' : `${PATHS.assets}css/[name].[hash].css`
}),
new CopyWebpackPlugin([
// { from: `${PATHS.src}/${PATHS.assets}img`, to: `${PATHS.assets}img` },
// { from: `${PATHS.src}/${PATHS.assets}fonts`, to: `${PATHS.assets}fonts` },
{ from: `${PATHS.src}/static`, to: '' }
])
]
if (isDevMode) {
arr.push(
new webpack.SourceMapDevToolPlugin({
filename: '[file].map'
}),
new HtmlBeautifyPlugin()
)
} else {
arr.push(
new BundleAnalyzerPlugin()
)
}
return arr
}
const optimization = () => {
const config = {
splitChunks: {
chunks: 'all'
}
}
if (isProdMode) {
config.splitChunks = {
cacheGroups: {
vendor: {
name: 'vendors',
test: /node_modules/,
chunks: 'all',
enforce: true
}
}
}
}
return config
}
module.exports = {
context: PATHS.src,
entry: [
'regenerator-runtime/runtime', `${PATHS.src}/index.js`
],
output: {
filename: isDevMode ? 'js/[name].js' : `${PATHS.assets}js/[name].[hash].js`,
path: PATHS.dist,
publicPath: '/'
},
devtool: isDevMode ? 'eval-cheap-module-source-map' : '',
devServer: {
contentBase: PATHS.dist,
host: getMyIpV4Address(ifaces),
port: '8081',
overlay: {
warnings: true,
errors: true
}
},
optimization: optimization(),
module: {
rules: [{
test: /\.pug$/,
use: [
'html-loader',
'pug-html-loader'
]
}, {
test: /\.(png|jpg|gif|svg)$/,
use: {
loader: 'file-loader',
options: {
name: isDevMode ? '[path][name].[ext]' : '[path][name].[hash].[ext]'
}
}
}, {
test: /\.(woff(2)?|ttf|eot)(\?v=\d+\.\d+\.\d+)?$/,
loader: 'file-loader',
options: {
name: '[path][name].[ext]'
}
}, {
test: /\.js$/,
exclude: '/node_modules/',
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
}, {
test: /\.(sa|sc|c)ss$/,
use: [
'style-loader',
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: isDevMode
}
},
{
loader: 'css-loader',
options: {
sourceMap: isDevMode
}
}, {
loader: 'postcss-loader',
options: {
sourceMap: isDevMode,
config: {
path: 'postcss.config.js'
}
}
}, {
loader: 'sass-loader',
options: {
sourceMap: isDevMode
}
}
]
}]
},
plugins: plugins()
}
function getMyIpV4Address (ifaces) {
let myIpV4Address
Object.keys(ifaces).forEach(dev => {
ifaces[dev].filter(details => {
if (details.family === 'IPv4' && details.internal === false) {
myIpV4Address = details.address
}
})
})
return myIpV4Address
}