22 lines
323 B
Markdown
22 lines
323 B
Markdown
# Chrysoblog
|
|
|
|
Personal Website
|
|
|
|
## Developing
|
|
|
|
Install dependencies with `npm install` (or `pnpm install` or `yarn`). Then start the dev server with
|
|
|
|
```bash
|
|
npm run dev [-- --open]
|
|
```
|
|
|
|
## Building
|
|
|
|
To create the production version,
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
You can preview the production build with `npm run preview`.
|