Skip to content

Commit 4530635

Browse files
docs: update swc stats
1 parent 99d0a99 commit 4530635

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/first-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Once the installation process is complete, you can run the following command at
103103
$ npm run start
104104
```
105105

106-
> info **Hint** To speed up the development process (x10 times faster rebuilds), you can use the [SWC builder](/recipes/swc) by passing the `-b swc` flag to the `start` script, as follows `npm run start -- -b swc`.
106+
> info **Hint** To speed up the development process (x20 times faster builds), you can use the [SWC builder](/recipes/swc) by passing the `-b swc` flag to the `start` script, as follows `npm run start -- -b swc`.
107107
108108
This command starts the app with the HTTP server listening on the port defined in the `src/main.ts` file. Once the application is running, open your browser and navigate to `http://localhost:3000/`. You should see the `Hello World!` message.
109109

content/recipes/swc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[SWC](https://swc.rs/) (Speedy Web Compiler) is an extensible Rust-based platform that can be used for both compilation and bundling.
44
Using SWC with Nest CLI is a great and simple way to significantly speed up your development process.
55

6-
> info **Hint** SWC is approximately **x10 times faster** than the default TypeScript compiler.
6+
> info **Hint** SWC is approximately **x20 times faster** than the default TypeScript compiler.
77
88
#### Installation
99

0 commit comments

Comments
 (0)