-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.watch.config.js
46 lines (44 loc) · 1.23 KB
/
webpack.watch.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
// 测试环境打包并watch库
var path = require('path')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
module.exports = {
// 入口
entry: {
main: './src/index.js'
},
// 输出
output: {
path: path.join(__dirname, './test/dist'),
publicPath: '/dist/',
filename: 'v-antd.js',
library: 'v-antd',
libraryTarget: 'umd'
},
// 加载器
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
sass: ExtractTextPlugin.extract({
use: [ { loader: 'css-loader' }, { loader: 'sass-loader' }],
fallback: 'vue-style-loader'
})
}
}
},
{ test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ },
{ test: /\.(png|jpg|gif|svg)$/, loader: 'file-loader', options: { name: '[name].[ext]?[hash]' } }
]
},
watch: true,
watchOptions: {
aggregateTimeout: 300,
poll: 1000
},
plugins: [
new ExtractTextPlugin('[name].css')
]
}