From 37c2d5f7384293ce1ba00302e8858c98d9fc93e3 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 20 May 2022 13:41:56 -0700 Subject: [PATCH] eslint-skip --- site/content/docs/5.2/getting-started/javascript.md | 1 + 1 file changed, 1 insertion(+) diff --git a/site/content/docs/5.2/getting-started/javascript.md b/site/content/docs/5.2/getting-started/javascript.md index 650cb333efc4..0b79ef8912b1 100644 --- a/site/content/docs/5.2/getting-started/javascript.md +++ b/site/content/docs/5.2/getting-started/javascript.md @@ -41,6 +41,7 @@ We provide a version of Bootstrap built as `ESM` (`bootstrap.esm.js` and `bootst Compared to JS bundlers, using ESM in the browser requires you to use the full path and filename instead of the module name. [Read more about JS modules in the browser.](https://v8.dev/features/modules#specifiers) That's why we use `'bootstrap.esm.min.js'` instead of `'bootstrap'` above. However, this is further complicated by our Popper dependency, which imports Popper into our JavaScript like so: + ```js import * as Popper from "@popperjs/core" ```