create-rspack 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/template-common/README.md +14 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ npm install
|
|
|
10
10
|
|
|
11
11
|
## Get started
|
|
12
12
|
|
|
13
|
-
Start the dev server:
|
|
13
|
+
Start the dev server, and the app will be available at [http://localhost:8080](http://localhost:8080).
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
npm run dev
|
|
@@ -21,3 +21,16 @@ Build the app for production:
|
|
|
21
21
|
```bash
|
|
22
22
|
npm run build
|
|
23
23
|
```
|
|
24
|
+
|
|
25
|
+
Preview the production build locally:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm run preview
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Learn more
|
|
32
|
+
|
|
33
|
+
To learn more about Rspack, check out the following resources:
|
|
34
|
+
|
|
35
|
+
- [Rspack documentation](https://rspack.dev) - explore Rspack features and APIs.
|
|
36
|
+
- [Rspack GitHub repository](https://github.com/web-infra-dev/rspack) - your feedback and contributions are welcome!
|