86f7a9c5 by renchao@pashanhoo.com

docs:配置修改

1 parent 1c379ff5
......@@ -45,7 +45,7 @@ module.exports = {
}
},
css: {
extract: false, // 是否使用css分离插件 ExtractTextPlugin
extract: true, // 是否使用css分离插件 ExtractTextPlugin
sourceMap: false, // 开启 CSS source maps?
loaderOptions: {
sass: {
......@@ -57,6 +57,10 @@ module.exports = {
// configureWebpack通过操作对象的形式,来修改默认的webpack配置
configureWebpack: {
name: name,
optimization: {
usedExports: true,
minimize: true
},
externals: [{
'./cptable': 'var cptable'
}],
......