]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Docs: Fix typo Getting Started > Vite and Webpack guides (#37153)
authorGabriel R. Barbosa <12158575+gabrielrbarbosa@users.noreply.github.com>
Wed, 14 Sep 2022 19:28:10 +0000 (16:28 -0300)
committerGitHub <noreply@github.com>
Wed, 14 Sep 2022 19:28:10 +0000 (21:28 +0200)
* 'were to look' → 'where to look'

Co-authored-by: Julien Déramond <juderamond@gmail.com>
site/content/docs/5.2/getting-started/vite.md
site/content/docs/5.2/getting-started/webpack.md

index ee08379a7c210ebbecd82c07115023cb621a5189..b203eef8a906ab4b3fc67e63bff4d3148c8c9cc7 100644 (file)
@@ -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
index 86bab39eb919703340e766f7e905c8fba28e6838..870e070e3ddfbb2f47ad02755806f89627925eed 100644 (file)
@@ -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')