Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ curl -fsSL https://pixi.sh/install.sh | bash
```
or look for alternate methods/platforms [here](https://pixi.sh/latest/#installation).

### Build and serve:
### Build and start development server (with live reloading to reflect changes):
```
pixi run serve
pixi run start
```
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.1.0"
[tasks]
install = { cmd = ["pnpm", "install"] }
build = { cmd = ["pnpm", "build"], depends-on = ["install"] }
serve = { cmd = ["pnpm", "serve"], depends-on = ["build"] }
start = { cmd = ["pnpm", "start"], depends-on = ["build"] }

[dependencies]
nodejs = ">=22.12.0,<22.14"
Expand Down