37 lines
604 B
Markdown
37 lines
604 B
Markdown
# Rspack project
|
|
|
|
## Setup
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
bun install
|
|
```
|
|
|
|
## Get started
|
|
|
|
Start the dev server, and the app will be available at <http://localhost:8080>.
|
|
|
|
```bash
|
|
bun run dev
|
|
```
|
|
|
|
Build the app for production:
|
|
|
|
```bash
|
|
bun run build
|
|
```
|
|
|
|
Preview the production build locally:
|
|
|
|
```bash
|
|
bun run preview
|
|
```
|
|
|
|
## Learn more
|
|
|
|
To learn more about Rspack, check out the following resources:
|
|
|
|
- [Rspack documentation](https://rspack.rs) - explore Rspack features and APIs.
|
|
- [Rspack GitHub repository](https://github.com/web-infra-dev/rspack) - your feedback and contributions are welcome!
|