Skip to content

Environment Support

witt edited this page Jun 20, 2021 · 2 revisions

Currently

Geist UI support these modern browsers:

IE / Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
last 2 versions last 2 versions last 2 versions last 2 versions

IE 11

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.


About

This page is public and everyone can edit it, if you have a better vier of compatibility, you can edit this page now.


Credits

Thanks to @PaulPCIO .