aboutsummaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorGabriel R. Barbosa <[email protected]>2022-09-14 16:28:10 -0300
committerGitHub <[email protected]>2022-09-14 21:28:10 +0200
commit9af1232c65cd0d63565cd9c8d36b91ef265b26cb (patch)
tree57f3cb2f3a015cf12f4dc56e12b8bf865f1dda47 /site
parent3bd57564140ef3953582a80e8f1084d81bdb5977 (diff)
downloadbootstrap-9af1232c65cd0d63565cd9c8d36b91ef265b26cb.tar.xz
bootstrap-9af1232c65cd0d63565cd9c8d36b91ef265b26cb.zip
Docs: Fix typo Getting Started > Vite and Webpack guides (#37153)
* 'were to look' → 'where to look' Co-authored-by: Julien Déramond <[email protected]>
Diffstat (limited to 'site')
-rw-r--r--site/content/docs/5.2/getting-started/vite.md2
-rw-r--r--site/content/docs/5.2/getting-started/webpack.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.2/getting-started/vite.md b/site/content/docs/5.2/getting-started/vite.md
index ee08379a7..b203eef8a 100644
--- a/site/content/docs/5.2/getting-started/vite.md
+++ b/site/content/docs/5.2/getting-started/vite.md
@@ -73,7 +73,7 @@ At this point, everything is in the right place, but Vite won't work because we
With dependencies installed and our project folder ready for us to start coding, we can now configure Vite and run our project locally.
-1. **Open `vite.config.js` in your editor.** Since it's blank, we'll need to add some boilerplate config to it so we can start our server. This part of the config tells Vite were to look for our project's JavaScript and how the development server should behave (pulling from the `src` folder with hot reload).
+1. **Open `vite.config.js` in your editor.** Since it's blank, we'll need to add some boilerplate config to it so we can start our server. This part of the config tells Vite where to look for our project's JavaScript and how the development server should behave (pulling from the `src` folder with hot reload).
<!-- eslint-skip -->
```js
diff --git a/site/content/docs/5.2/getting-started/webpack.md b/site/content/docs/5.2/getting-started/webpack.md
index 86bab39eb..870e070e3 100644
--- a/site/content/docs/5.2/getting-started/webpack.md
+++ b/site/content/docs/5.2/getting-started/webpack.md
@@ -75,7 +75,7 @@ At this point, everything is in the right place, but Webpack won't work because
With dependencies installed and our project folder ready for us to start coding, we can now configure Webpack and run our project locally.
-1. **Open `webpack.config.js` in your editor.** Since it's blank, we'll need to add some boilerplate config to it so we can start our server. This part of the config tells Webpack were to look for our project's JavaScript, where to output the compiled code to (`dist`), and how the development server should behave (pulling from the `dist` folder with hot reload).
+1. **Open `webpack.config.js` in your editor.** Since it's blank, we'll need to add some boilerplate config to it so we can start our server. This part of the config tells Webpack where to look for our project's JavaScript, where to output the compiled code to (`dist`), and how the development server should behave (pulling from the `dist` folder with hot reload).
```js
const path = require('path')