fix: add ie support (ie >= 9) (#538)

* fix: add ie support (ie > 9)

* fix: add support for IE11

* fix: small fix

* fix: fix
This commit is contained in:
Nekotoxin
2022-03-05 16:32:37 +08:00
committed by GitHub
parent efc07f0919
commit cfbce79e32
3 changed files with 38 additions and 9 deletions

View File

@ -29,7 +29,9 @@
"react-i18next": "^11.8.7",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-social-login-buttons": "^3.4.0"
"react-social-login-buttons": "^3.4.0",
"react-app-polyfill": "^3.0.0",
"core-js": "^3.21.1"
},
"scripts": {
"start": "cross-env PORT=7001 craco start",
@ -46,12 +48,14 @@
"production": [
">0.2%",
"not dead",
"not op_mini all"
"not op_mini all",
"ie > 8"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
"last 1 safari version",
"ie > 8"
]
},
"devDependencies": {