Fix #4115: Upgrade to webpack 4.x.

https://github.com/rails/webpacker/blob/master/docs/v4-upgrade.md
This commit is contained in:
evazion
2019-07-31 15:10:08 -05:00
parent 2db8e9814b
commit 504f785edc
7 changed files with 3352 additions and 2595 deletions

12
postcss.config.js Normal file
View File

@@ -0,0 +1,12 @@
module.exports = {
plugins: [
require('postcss-import'),
require('postcss-flexbugs-fixes'),
require('postcss-preset-env')({
autoprefixer: {
flexbox: 'no-2009'
},
stage: 3
})
]
}