2d0e8f39 by renchao@pashanhoo.com

style:webpack配置

1 parent 2159a36b
......@@ -48,7 +48,7 @@ module.exports = {
}
},
css: {
extract: false, // 是否使用css分离插件 ExtractTextPlugin
extract: true, // 是否使用css分离插件 ExtractTextPlugin
sourceMap: false, // 开启 CSS source maps?
loaderOptions: {
sass: {
......@@ -59,6 +59,10 @@ module.exports = {
},
// configureWebpack通过操作对象的形式,来修改默认的webpack配置
configureWebpack: {
optimization: {
usedExports: true,
minimize: true
},
entry: {
app: './src/main.js'
},
......