Has anyone used this with webpack and PostCSS?
You can use postcss.config.js to load variables and plugins and i've tried the following:
module.exports = {
remove: false,
plugins: [
require('autoprefixer')({
browsers: [
'>1%',
'last 2 versions',
'ie >= 8'
]
}),
require('pixrem')
]
}
However it doesn't work. Any help is hugely appreciated.