-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
73 lines (71 loc) · 1.56 KB
/
webpack.config.dev.js
File metadata and controls
73 lines (71 loc) · 1.56 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
var path = require('path')
// var webpack = require('webpack')
var HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry:[
'babel-polyfill',
'./src/index.js',
'./src/index2.js',
'./src/style.css',
'./src/style.less',
'./src/style.scss',
],
output:{
path:path.join(__dirname, 'dist'),
filename: 'bundle.js'
},
module:{
rules:[
{
test:/\.css$/,
loaders:['style-loader','css-loader']
},
{
test:/\.scss$/,
loaders:['style-loader','css-loader','sass-loader']
},
{
test:/\.less$/,
loaders:['style-loader','css-loader','less-loader']
},
{
test:/\.(jpg|png)$/,
loaders:['url-loader']
},
{
test:/\.js$/,
exclude:/(node_modules)/,//排除掉node_module目录
use:{
loader:'babel-loader',
options:{
presets:['@babel/preset-env'], //转码规则
plugins:["@babel/plugin-transform-runtime"]
}
}
}
]
},
plugins:[
new HtmlWebpackPlugin({
template: './src/index.html'
})
],
devServer: {
contentBase: './dist',
hot: true,
//liveReload: true, //是否整页面刷新,当hot为false的时候生效
https: true,
host:'127.0.0.4',
port:8088,
before: function(app, server) {
app.get('/some/path', function(req, res) {
res.json({ custom: 'response' }); //mock数据时使用
});
},
after: function(app, server) {
app.get('/some/path2', function(req, res) {
res.json({ custom: 'response2' });
});
}
}
}