From 0c23f8d0519d063b88483f26d2485f3ac1d1e58d Mon Sep 17 00:00:00 2001 From: redocly-bot Date: Mon, 21 Mar 2022 14:48:22 +0000 Subject: [PATCH] sync: Synced local 'docs/' with remote 'docs/redoc/' --- docs/usage-with-ie11.md | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 docs/usage-with-ie11.md diff --git a/docs/usage-with-ie11.md b/docs/usage-with-ie11.md deleted file mode 100644 index 985728b9bf..0000000000 --- a/docs/usage-with-ie11.md +++ /dev/null @@ -1,24 +0,0 @@ -# Usage With IE11 - - -## Standalone package - -IE11 is supported by default if you use ReDoc as a standalone package. - -## Usage as a React component - -If you use ReDoc as a React component you should include the following polyfills in your project: - -```js -import 'core-js/es6/promise'; -import 'core-js/fn/array/find'; -import 'core-js/fn/object/assign'; -import 'core-js/fn/string/ends-with'; -import 'core-js/fn/string/starts-with'; - -import 'core-js/es6/map'; -import 'core-js/es6/symbol'; - -import 'unfetch/polyfill/index'; // or any other fetch polyfill -import 'url-polyfill'; -```