diff options
Diffstat (limited to 'site/docs')
| -rw-r--r-- | site/docs/4.1/getting-started/javascript.md | 4 | ||||
| -rw-r--r-- | site/docs/4.1/getting-started/webpack.md | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/site/docs/4.1/getting-started/javascript.md b/site/docs/4.1/getting-started/javascript.md index da7011e76..20500c2af 100644 --- a/site/docs/4.1/getting-started/javascript.md +++ b/site/docs/4.1/getting-started/javascript.md @@ -8,7 +8,9 @@ toc: true ## Individual or compiled -Plugins can be included individually (using Bootstrap's individual `*.js` files), or all at once using `bootstrap.js` or the minified `bootstrap.min.js` (don't include both). +Plugins can be included individually (using Bootstrap's individual `js/dist/*.js`), or all at once using `bootstrap.js` or the minified `bootstrap.min.js` (don't include both). + +If you use a bundler (Webpack, Rollup...), you can use `/js/dist/*.js` files which are UMD ready. ## Dependencies diff --git a/site/docs/4.1/getting-started/webpack.md b/site/docs/4.1/getting-started/webpack.md index e8a57cf96..59211b075 100644 --- a/site/docs/4.1/getting-started/webpack.md +++ b/site/docs/4.1/getting-started/webpack.md @@ -22,7 +22,7 @@ Alternatively, you may **import plugins individually** as needed: {% highlight js %} import 'bootstrap/js/dist/util'; -import 'bootstrap/js/dist/dropdown'; +import 'bootstrap/js/dist/alert'; ... {% endhighlight %} @@ -30,11 +30,6 @@ Bootstrap is dependent on [jQuery](https://jquery.com/) and [Popper](https://pop these are defined as `peerDependencies`, this means that you will have to make sure to add both of them to your `package.json` using `npm install --save jquery popper.js`. -{% capture callout %} -Notice that if you chose to **import plugins individually**, you must also install [exports-loader](https://github.com/webpack-contrib/exports-loader) -{% endcapture %} -{% include callout.html content=callout type="warning" %} - ## Importing Styles ### Importing Precompiled Sass |
