diff options
author | silverwind <me@silverwind.io> | 2024-02-08 14:49:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 13:49:44 +0000 |
commit | ce9978bfd4e035ed065b02b28e02905674320b6a (patch) | |
tree | 4dd16546e3e4da87a857a5b25b60bd3c220e82d2 /package.json | |
parent | 96ad1d6340038c0c841d9cad9a440daee3241aac (diff) | |
download | gitea-ce9978bfd4e035ed065b02b28e02905674320b6a.tar.gz gitea-ce9978bfd4e035ed065b02b28e02905674320b6a.zip |
Use defaults browserslist (#29098)
IE usage has dropped enough to not be included in the defaults
browserslist anymore as per https://browsersl.ist/#q=defaults, so we can
use the defaults now.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package.json b/package.json index 569955d815..ef1fcca545 100644 --- a/package.json +++ b/package.json @@ -85,8 +85,6 @@ "vitest": "1.2.2" }, "browserslist": [ - "defaults", - "not ie > 0", - "not ie_mob > 0" + "defaults" ] } |