Adding Safari 7 support to autoprefixer (#9534)

PhantomJS is using a rather outdated version of WebKit, which requires
various css-prefixes to render correctly. PhantomJS doesn't have a specific
user-agent, and Safari 7 is the closet version of WebKit.
This commit is contained in:
Brandon Kobel 2016-12-19 07:36:24 -05:00 committed by GitHub
parent 90c821b11e
commit eeb4a7dfeb

View file

@ -3,7 +3,8 @@ module.exports = {
require('autoprefixer')({
browsers: [
'last 2 versions',
'> 5%'
'> 5%',
'Safari 7' // for PhantomJS support
]
})
]