Created
January 15, 2017 17:33
-
-
Save mattvagni/17a64ea02a4ac2706e9abac0d49625f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const autoprefixer = require('autoprefixer'); | |
module.exports = { | |
plugins: [ | |
autoprefixer({ | |
browsers: [ | |
'last 2 versions', | |
'IE >= 9', | |
'safari >= 8' | |
] | |
}) | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment