Built with VitePress
Inside of the project, you'll see the following folders and files:
.
├── .vitepress/
│ ├── theme/
│ │ ├── custom.css
│ │ └── index.js
│ └── config.mts
├── src/
│ ├── blog/
│ │ ├── *.md
│ │ └── ...
│ ├── csharp/
│ │ ├── *.md
│ │ └── ...
│ ├── public/
│ │ ├── fonts/
│ │ ├── icons/
│ │ ├── images/
│ │ └── ...
│ ├── index.md
│ └── *.md
└── package.json
VitePress looks for .md files in the src/, src/csharpand src/blog/ directories. Each file is exposed as a route based on its file name.
Images can be added to src/public/images/ and embedded in Markdown with a relative link.
Static assets, like favicons, can be placed in the src/public/ directory.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:5173 |
npm run build |
Build your production site to ./.vitepress/dist/ |
npm run preview |
Preview your build locally, before deploying |
Check out VitePress Guide, read VitePress Reference, or jump into the Getting Started.