refactor: webpack vendor, postcss + fixes

This commit is contained in:
NGPixel
2018-01-26 20:22:31 -05:00
parent 6227690c94
commit 1be3234ba1
8 changed files with 517 additions and 69 deletions

View File

@@ -1,6 +1,8 @@
const webpack = require('webpack')
const merge = require('webpack-merge')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const common = require('./webpack.common.js')
module.exports = merge(common, {
@@ -10,7 +12,8 @@ module.exports = merge(common, {
plugins: [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('development')
})
}),
new ExtractTextPlugin({ disable: true })
],
resolve: {}
})