-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
94 lines (93 loc) · 1.96 KB
/
webpack.config.dev.js
File metadata and controls
94 lines (93 loc) · 1.96 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
var path = require('path')
// var webpack = require('webpack')
var HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry:[
'babel-polyfill',
'./src/index.js',
],
output:{
path:path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/',
},
module:{
rules:[
{
test:/\.css$/,
loaders:['style-loader','css-loader']
},
{
test:/\.scss$/,
loaders:['style-loader','css-loader','sass-loader']
},
{
test:/\.less$/,
use:[
{
loader:'style-loader',
},
{
loader:'css-loader',
options: {
modules: {
mode: 'local',
localIdentName: '[name]-[local]-[hash:base64:10]',
},
},
},
{
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','@babel/preset-react'], //转码规则
plugins:[
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties",
["import", {
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css" // `style: true` 会加载 less 文件
}]
]
}
}
}
]
},
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,
historyApiFallback: true,
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' });
});
}
}
}