7fa943eb
梁灏
init
|
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
* 本地预览
*/
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
// 入口
entry: {
|
4b05d84e
梁灏
Modify the direct...
|
13
|
main: './test/main',
|
7fa943eb
梁灏
init
|
14
15
16
17
|
vendors: ['vue', 'vue-router']
},
// 输出
output: {
|
4df4ea19
jingsam
optimize project ...
|
18
|
path: path.join(__dirname, '../test/dist'),
|
4b05d84e
梁灏
Modify the direct...
|
19
|
publicPath: '/test/dist/',
|
7fa943eb
梁灏
init
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
filename: '[name].js',
chunkFilename: '[name].chunk.js'
},
// 加载器
module: {
loaders: [
{ test: /\.vue$/, loader: 'vue' },
{ test: /\.js$/, loader: 'babel', exclude: /node_modules/ },
{ test: /\.css$/, loader: 'style!css!autoprefixer'},
{ test: /\.less$/, loader: 'style!css!less' },
{ test: /\.scss$/, loader: 'style!css!sass?sourceMap'},
{ test: /\.(gif|jpg|png|woff|svg|eot|ttf)\??.*$/, loader: 'url-loader?limit=8192'},
{ test: /\.(html|tpl)$/, loader: 'html-loader' }
]
},
vue: {
loaders: {
css: ExtractTextPlugin.extract(
"style-loader",
"css-loader?sourceMap",
{
|
4df4ea19
jingsam
optimize project ...
|
41
|
publicPath: "/test/dist/"
|
7fa943eb
梁灏
init
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
}
),
less: ExtractTextPlugin.extract(
'vue-style-loader',
'css-loader!less-loader'
),
js: 'babel'
}
},
// 转es5
babel: {
presets: ['es2015'],
plugins: ['transform-runtime']
},
resolve: {
// require时省略的扩展名,如:require('module') 不需要module.js
extensions: ['', '.js', '.vue'],
alias: {
|
4b05d84e
梁灏
Modify the direct...
|
60
|
iview: '../../src/index'
|
7fa943eb
梁灏
init
|
61
62
63
64
65
66
|
}
},
plugins: [
new ExtractTextPlugin("[name].css",{ allChunks : true,resolve : ['modules'] }), // 提取CSS
new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'), // 提取第三方库
new HtmlWebpackPlugin({ // 构建html文件
|
4df4ea19
jingsam
optimize project ...
|
67
68
|
filename: 'index.html',
template: './test/index.html',
|
7fa943eb
梁灏
init
|
69
70
71
|
inject: 'body'
})
]
|
4df4ea19
jingsam
optimize project ...
|
72
|
};
|