You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're building a Parcel project with Bootstrap from scratch, so there are some prerequisites and up front steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
18
+
We're building a Parcel project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
19
19
20
-
1.**Create a project folder and setup npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
20
+
1.**Create a project folder and set up npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
21
21
22
22
```sh
23
23
mkdir my-project &&cd my-project
@@ -148,7 +148,7 @@ Importing Bootstrap into Parcel requires two imports, one into our `styles.scss`
148
148
149
149
*[Read our JavaScript docs]({{< docsref "/getting-started/javascript/" >}}) for more information on how to use Bootstrap's plugins.*
150
150
151
-
3.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this.
151
+
3.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this:
152
152
153
153
<imgclass="img-fluid"src="/docs/{{< param docs_version >}}/assets/img/guides/parcel-dev-server-bootstrap.png"alt="Parcel dev server running with Bootstrap">
We're building a Vite project with Bootstrap from scratch, so there are some prerequisites and up front steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
18
+
We're building a Vite project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
19
19
20
-
1.**Create a project folder and setup npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
20
+
1.**Create a project folder and set up npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
21
21
22
22
```sh
23
23
mkdir my-project &&cd my-project
@@ -42,7 +42,7 @@ We're building a Vite project with Bootstrap from scratch, so there are some pre
42
42
npm i --save-dev sass
43
43
```
44
44
45
-
Now that we have all the necessary dependencies installed and setup, we can get to work creating the project files and importing Bootstrap.
45
+
Now that we have all the necessary dependencies installed and set up, we can get to work creating the project files and importing Bootstrap.
46
46
47
47
## Project structure
48
48
@@ -170,7 +170,7 @@ In the next and final section to this guide, we’ll import all of Bootstrap’s
170
170
171
171
*[Read our JavaScript docs]({{< docsref "/getting-started/javascript/" >}}) for more information on how to use Bootstrap's plugins.*
172
172
173
-
3.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this.
173
+
3.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this:
174
174
175
175
<imgclass="img-fluid"src="/docs/{{< param docs_version >}}/assets/img/guides/vite-dev-server-bootstrap.png"alt="Vite dev server running with Bootstrap">
We're building a Webpack project with Bootstrap from scratch, so there are some prerequisites and up front steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
18
+
We're building a Webpack project with Bootstrap from scratch, so there are some prerequisites and upfront steps before we can really get started. This guide requires you to have Node.js installed and some familiarity with the terminal.
19
19
20
-
1.**Create a project folder and setup npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
20
+
1.**Create a project folder and set up npm.** We'll create the `my-project` folder and initialize npm with the `-y` argument to avoid it asking us all the interactive questions.
21
21
22
22
```sh
23
23
mkdir my-project &&cd my-project
@@ -242,7 +242,7 @@ Importing Bootstrap into Webpack requires the loaders we installed in the first
242
242
243
243
*[Read our JavaScript docs]({{< docsref "/getting-started/javascript/" >}}) for more information on how to use Bootstrap's plugins.*
244
244
245
-
4.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this.
245
+
4.**And you're done! 🎉** With Bootstrap's source Sass and JS fully loaded, your local development server should now look like this:
246
246
247
247
<imgclass="img-fluid"src="/docs/{{< param docs_version >}}/assets/img/guides/webpack-dev-server-bootstrap.png"alt="Webpack dev server running with Bootstrap">
0 commit comments