mirror of https://github.com/grafana/grafana
Fix: Autoprefixer is now working (#16351)
The autoprefixer not working broke the phantomjs backend png rendering Fixes #16345pull/16357/head
parent
7e149fb4d3
commit
2e59166daa
@ -0,0 +1,4 @@ |
||||
>1%, |
||||
Chrome > 20 |
||||
last 4 versions, |
||||
Firefox ESR |
@ -1,7 +1,9 @@ |
||||
module.exports = { |
||||
plugins: { |
||||
'autoprefixer': {}, |
||||
'postcss-reporter': {}, |
||||
'postcss-browser-reporter': {}, |
||||
} |
||||
} |
||||
module.exports = () => { |
||||
return { |
||||
plugins: { |
||||
autoprefixer: {}, |
||||
'postcss-reporter': {}, |
||||
'postcss-browser-reporter': {}, |
||||
} |
||||
}; |
||||
}; |
||||
|
Loading…
Reference in new issue