Skip to content

Commit 81e2f8a

Browse files
committed
fixed lint errors
1 parent 9bb440e commit 81e2f8a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/content/guides/getting-started.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ contributors:
3030
- zowiebeha
3131
---
3232

33+
Webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interact with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community.
34+
35+
W> The minimum supported Node.js version to run webpack 5 is 10.13.0 (LTS)
36+
37+
<StackBlitzPreview example="getting-started?terminal=" />
38+
3339
## Quick Start (Minimal Working Example)
3440

3541
If you just want to get a working webpack project up and running quickly, the easiest way is to scaffold one using `create-webpack-app`.
@@ -41,12 +47,6 @@ cd webpack-demo
4147

4248
T> This command generates a ready-to-use webpack project with a sensible default configuration. Continue below if you'd like to understand how to set up webpack manually step by step.
4349

44-
Webpack is used to compile JavaScript modules. Once [installed](/guides/installation), you can interact with webpack either from its [CLI](/api/cli) or [API](/api/node). If you're still new to webpack, please read through the [core concepts](/concepts) and [this comparison](/comparison) to learn why you might use it over the other tools that are out in the community.
45-
46-
W> The minimum supported Node.js version to run webpack 5 is 10.13.0 (LTS)
47-
48-
<StackBlitzPreview example="getting-started?terminal=" />
49-
5050
## Basic Setup
5151

5252
First let's create a directory, initialize npm, [install webpack locally](/guides/installation/#local-installation), and install the [`webpack-cli`](https://github.com/webpack/webpack-cli) (the tool used to run webpack on the command line):

0 commit comments

Comments
 (0)