Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Add Safari 8+ to autoprefixer config (#431)
Browse files Browse the repository at this point in the history
Safari version 8 requires the prefixed version of flexbox to work successfully.
  • Loading branch information
onishiweb authored Apr 19, 2017
1 parent 7c05daa commit f60dd33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ module.exports.sass = function (gulp, config) {
};

const autoprefixerConfig = {
browsers: config.autoprefixerBrowsers || ['> 1%', 'last 2 versions', 'ie > 6', 'ff ESR', 'bb >= 7'],
browsers: config.autoprefixerBrowsers || ['> 1%', 'last 2 versions', 'ie > 6', 'ff ESR', 'bb >= 7', 'safari >= 8'],
cascade: config.autoprefixerCascade || false,
flexbox: 'no-2009',
remove: config.autoprefixerRemove === undefined ? true : config.autoprefixerRemove
Expand Down

0 comments on commit f60dd33

Please sign in to comment.