Skip to content

Commit d05c15f

Browse files
committed
fix: adjust config to support only active or used browsers
Refine configuration as v3.1.0 introduced a bunch of previously not supported *old* browsers that cause heavily increased bundle sizes. This instead goes back to what 3.0.1 had (>0.25% usage) but also includes new browsers (what 3.1.0 wanted to fix) that are not yet used by >0.25% of users. So we support: - Always Firefox ESR - Browsers (and their forks like Edge) that support "baseline widely available" - If they are new (last 4 major versions) - Or still used by >0.25% of the market - And in both cases are not dead Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 011904a commit d05c15f

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

browserslist.config.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
*/
55

66
module.exports = [
7-
'defaults',
8-
'not op_mini all',
9-
'not dead',
10-
'Firefox ESR',
11-
'baseline widely available',
7+
'baseline widely available with downstream and last 4 major versions and not dead',
8+
'baseline widely available with downstream and >0.25% and not dead',
9+
'firefox esr'
1210
]

0 commit comments

Comments
 (0)