update webpack config

update webpack config
This commit is contained in:
梁灏 2017-03-01 13:11:58 +08:00
parent fcf37f49ee
commit 1f561319f3
4 changed files with 24 additions and 159 deletions

View file

@ -4,6 +4,7 @@
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
// 入口
@ -98,10 +99,8 @@ module.exports = {
}
},
plugins: [
// new ExtractTextPlugin({ filename: '[name].css', disable: false, allChunks: true }),
// new ExtractTextPlugin("[name].css",{ allChunks : true,resolve : ['modules'] }), // 提取CSS
new ExtractTextPlugin({ filename: '[name].css', disable: false, allChunks: true }), // 提取CSS
// https://doc.webpack-china.org/plugins/commons-chunk-plugin/
new webpack.optimize.CommonsChunkPlugin({ name: 'vendors', filename: 'vendor.js' })
// new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'), // 提取第三方库
]
};