-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.develop.config.js
61 lines (60 loc) · 1.3 KB
/
webpack.develop.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
var path = require('path')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var OpenBrowserPlugin = require('open-browser-webpack-plugin')
// webpack2不支持自定义eslint属性,module不支持preLoaders属性
module.exports = {
entry: path.resolve(__dirname, 'app/index.jsx'),
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
/* eslint: {
configFile:'.eslintrc.js'
}, */
module: {
/* preLoaders: [
{
test: /\.js$/,
loader: 'eslint-loader',
exclude: /node_modules/
}
], */
loaders: [
{
enforce: 'pre',
test: /\.js$/,
loader: 'eslint-loader',
exclude: /node_modules/
},
{
test: /\.jsx?$/, // 用正则表达式匹配文件路径
loader: 'babel-loader', // 加载模块babel,它是babel-loader的缩写
/* query: {
presets: ['es2015', 'react']
} */
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
/* {
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader'
}, */
{
test: /\.(png|jpg|jpeg|gif)$/,
loader: 'url-loader'
},
{
test: /\.(eot|woff|ttf|woff2|svg)$/,
loader: 'url-loader'
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: __dirname + '/app/index.html'
}),
new OpenBrowserPlugin({url: 'http://localhost:8080/'})
]
}