29 lines
533 B
Markdown
29 lines
533 B
Markdown
# Chrysoblog
|
|
|
|
A blog framework
|
|
|
|
## Building
|
|
|
|
To create the production version,
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
You can preview the production build with `npm run preview`.
|
|
|
|
### Content
|
|
|
|
To insert custom content, replace
|
|
- `src/content/metadata.json`: This file controls the display format for titles, front cover, etc.
|
|
- `src/content/**/*.md`: These contain the blog posts and bio
|
|
|
|
## Developing
|
|
|
|
Install dependencies with `npm install` (or `pnpm install` or `yarn`). Then start the dev server with
|
|
|
|
```bash
|
|
npm run dev [-- --open]
|
|
```
|
|
|