From 102b678335ba74ac8f0ab94c8c49cba97e836e6d Mon Sep 17 00:00:00 2001 From: Costa Alexoglou Date: Mon, 16 May 2022 13:16:07 +0200 Subject: [PATCH] docs: use latest core-js unpkg link (#8190) --- packages/plugin-legacy/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/plugin-legacy/README.md b/packages/plugin-legacy/README.md index fc4167f4f1010f..bd581052e88801 100644 --- a/packages/plugin-legacy/README.md +++ b/packages/plugin-legacy/README.md @@ -122,9 +122,9 @@ The legacy plugin offers a way to use native `import()` in the modern build whil Polyfill specifier strings for `polyfills` and `modernPolyfills` can be either of the following: -- Any [`core-js` 3 sub import paths](https://unpkg.com/browse/core-js@3.8.2/) - e.g. `es/map` will import `core-js/es/map` +- Any [`core-js` 3 sub import paths](https://unpkg.com/browse/core-js@latest/) - e.g. `es/map` will import `core-js/es/map` -- Any [individual `core-js` 3 modules](https://unpkg.com/browse/core-js@3.8.2/modules/) - e.g. `es.array.iterator` will import `core-js/modules/es.array.iterator.js` +- Any [individual `core-js` 3 modules](https://unpkg.com/browse/core-js@latest/modules/) - e.g. `es.array.iterator` will import `core-js/modules/es.array.iterator.js` **Example**