-
Notifications
You must be signed in to change notification settings - Fork 332
Environment Support
witt edited this page Jun 20, 2021
·
2 revisions
Geist UI support these modern browsers:
Edge |
Firefox |
Chrome |
Safari |
---|---|---|---|
last 2 versions | last 2 versions | last 2 versions | last 2 versions |
If you need to support IE11, you have the following options:
1. using Babel for transpilation, Babel config for reference:
{
"presets": [
["@babel/presets-env", {
"targets": {
"browsers": {
"ie": "11"
}
},
}]
]
}
2. Add babel-polyfill manually.
3. Add core-js manually.
This page is public and everyone can edit it, if you have a better vier of compatibility, you can edit this page now.
Thanks to @PaulPCIO .