Fix: Autoprefixer is now working (#16351)

The autoprefixer not working broke the phantomjs backend png rendering

Fixes #16345
This commit is contained in:
Torkel Ödegaard
2019-04-02 18:15:30 +02:00
committed by GitHub
parent 7e149fb4d3
commit 2e59166daa
3 changed files with 14 additions and 8 deletions

View File

@ -1,7 +1,9 @@
module.exports = {
plugins: {
'autoprefixer': {},
'postcss-reporter': {},
'postcss-browser-reporter': {},
}
}
module.exports = () => {
return {
plugins: {
autoprefixer: {},
'postcss-reporter': {},
'postcss-browser-reporter': {},
}
};
};