20 lines
230 B
Markdown
20 lines
230 B
Markdown
# Development
|
|
|
|
Start a development server
|
|
```shell
|
|
npm run dev
|
|
```
|
|
|
|
# Final version
|
|
|
|
Building the static assets:
|
|
```shell
|
|
npm run build
|
|
```
|
|
|
|
You can use Vite to run a server showing the built assets:
|
|
```shell
|
|
npm run preview
|
|
```
|
|
|