mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-29 10:36:42 -05:00
Add webkit prefixes for safari 8
`caniuse` updated their api recently, and it appears that support for safari 8 is no longer in the last 3 versions (and it appears that safari 8 is not listed as supported there in general). explicitly add the version back in to make sure the proper `-webkit` prefixes are included for that browser.
This commit is contained in:
parent
ee088e6384
commit
b750ab8cf7
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ module.exports = {
|
||||||
noParse: /node_modules\/google-libphonenumber\/dist/
|
noParse: /node_modules\/google-libphonenumber\/dist/
|
||||||
},
|
},
|
||||||
postcss: function () {
|
postcss: function () {
|
||||||
return [autoprefixer({browsers: ['last 3 versions']})];
|
return [autoprefixer({browsers: ['last 3 versions', 'Safari >= 8', 'iOS >= 8']})];
|
||||||
},
|
},
|
||||||
node: {
|
node: {
|
||||||
fs: 'empty'
|
fs: 'empty'
|
||||||
|
|
Loading…
Reference in a new issue