-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
59 lines (55 loc) · 1.58 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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin')
const distPath = path.resolve(__dirname, 'dist')
const mode = process.env.NODE_ENV || 'development'
module.exports = {
// production | development | node
// 不同 mode, 默认开启的插件不一样 https://webpack.docschina.org/concepts/mode/#%E7%94%A8%E6%B3%95
mode: mode,
entry: {
app: './src/app.js'
},
output: {
path: distPath,
filename: '[name].bundle.js',
publicPath: '/'
},
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: [
// last loader require return string | Buffer
{
loader: 'after-babel-loader'
},
{
loader: 'babel-loader'
},
// custom loader
{
loader: 'before-babel-loader',
options: {
// optional
test: 'xxxx',
hello: /^(21\d{5})(\d{5})(\d)$/
}
}
]
}
]
},
// loader resolve
resolveLoader: {
modules: [
'node_modules',
path.resolve(__dirname, 'loaders')
]
},
plugins: [
new HtmlWebpackPlugin({
template: './public/template.html'
})
]
};