-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
129 lines (127 loc) · 2.88 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
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const glob = require('glob')
module.exports = {
entry: {
main: path.join(__dirname, 'src/js/main.js')
},
output: {
path: path.join(__dirname, 'dist'),
filename: 'js/[name].js?[chunkhash]'
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.pug$/,
use: ['html-loader', {
loader: 'pug-html-loader',
options: {
data: {}
}
}]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10240,
name: 'images/[name].[ext]?[hash:7]'
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
name: 'media/[name].[ext]?[hash:7]'
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
name: 'fonts/[name].[ext]?[hash:7]'
}
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: '../',
}
},
'css-loader',
'postcss-loader'
]
},
{
test: /\.styl$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: '../',
}
},
'css-loader',
'postcss-loader',
'stylus-loader'
]
}
]
},
devServer: {
host: 'localhost',
port: 8080,
hot: false,
liveReload: true,
open: true,
progress: true,
watchContentBase: true,
watchOptions: {
poll: 1000,
ignored: /node_modules/
}
},
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'all'
}
}
}
},
plugins: [
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: 'css/[name].css?[hash]',
chunkFilename: 'css/[id].css?[hash]'
})
].concat(_gatherTemplate())
}
function _gatherTemplate() {
const files = glob.sync('./src/pages/*.pug')
return files.map(file => {
const chunkName = file.substring(file.lastIndexOf('/') + 1, file.lastIndexOf('.'))
return new HtmlWebpackPlugin({
filename: `${chunkName}.html`,
template: file,
inject: true,
chunks: [chunkName, 'main', 'vendor'],
minify: false
})
})
}