1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

autoprefixer and webpack use the same browser list config

This commit is contained in:
Mark McDowall
2019-03-05 20:01:21 -08:00
parent b72b74b6c6
commit 6bb649bac5
3 changed files with 10 additions and 15 deletions
+2 -9
View File
@@ -1,4 +1,5 @@
const reload = require('require-nocache')(module);
const browsers = require('./browsers');
module.exports = (ctx, configPath, options) => {
const config = {
@@ -17,15 +18,7 @@ module.exports = (ctx, configPath, options) => {
'postcss-color-function': {},
'postcss-nested': {},
autoprefixer: {
browsers: [
'Chrome >= 30',
'Firefox >= 30',
'Safari >= 6',
'Edge >= 12',
'Explorer >= 11',
'iOS >= 7',
'Android >= 4.4'
]
browsers
}
}
};