-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Browserslist configuration | ||
# This file is used by various tools like Autoprefixer, Babel, ESLint, and others | ||
# Documentation: https://github.com/browserslist/browserslist#readme | ||
|
||
# Target browsers with significant usage globally | ||
>= 0.5% # Browsers with more than 0.5% global market share | ||
|
||
# Support the last 2 major versions of each browser | ||
last 2 major versions # The last 2 major versions of each browser | ||
|
||
# Include Firefox ESR (Extended Support Release) | ||
Firefox ESR # The latest Extended Support Release of Firefox | ||
|
||
# Exclude outdated and unsupported browsers | ||
not dead # Exclude browsers that are no longer maintained | ||
not Explorer <= 11 # Exclude Internet Explorer 11 and below | ||
not ie <= 11 # (Redundant, but ensures exclusion of IE 11) | ||
not op_mini all # Exclude all versions of Opera Mini | ||
not Android <= 4.4 # Exclude Android versions <= 4.4 with poor web support |