I'm getting this error, with Webpack 4:
(Emitted value instead of an instance of Error) postcss-esplit: Destination is not provided, splitted css files would not be written
This is my postcss.config.js:
module.exports = {
plugins: {
'autoprefixer': {},
'postcss-esplit': {},
},
};
Am I doing something wrong? Or is this plugin not supporting webpack?
I'm getting this error, with Webpack 4:
(Emitted value instead of an instance of Error) postcss-esplit: Destination is not provided, splitted css files would not be writtenThis is my
postcss.config.js:Am I doing something wrong? Or is this plugin not supporting webpack?