Fix #854: Hardcoded list of supported browsers to avoid unexpected regressions
This commit is contained in:
parent
d0af4507d9
commit
80816ec50d
|
@ -0,0 +1 @@
|
||||||
|
Hardcoded list of supported browsers to avoid unexpected regressions (#854)
|
|
@ -85,9 +85,20 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"browserslist": [
|
"browserslist": [
|
||||||
"> 1%",
|
"IE >= 11",
|
||||||
"last 2 versions",
|
"Firefox >= 52",
|
||||||
"not ie <= 8"
|
"ChromeAndroid >= 70",
|
||||||
|
"Chrome >= 49",
|
||||||
|
"Safari >= 9",
|
||||||
|
"Edge >= 16",
|
||||||
|
"Opera >= 57",
|
||||||
|
"OperaMini >= 57",
|
||||||
|
"Samsung >= 7",
|
||||||
|
"FirefoxAndroid >= 63",
|
||||||
|
"UCAndroid >= 11",
|
||||||
|
"iOS >= 9",
|
||||||
|
"Android >= 4",
|
||||||
|
"not dead"
|
||||||
],
|
],
|
||||||
"author": "Eliot Berriot <contact@eliotberriot.com>",
|
"author": "Eliot Berriot <contact@eliotberriot.com>",
|
||||||
"description": "Funkwhale front-end"
|
"description": "Funkwhale front-end"
|
||||||
|
|
Loading…
Reference in New Issue