772591f57482343dc2c2eb952a0ffc999e4a5028
# [0.21.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.20.0...0.21.0) (2026-04-07) ### Features * add more apps ([fa91135](fa91135059)) * add more apps ([32f11ff](32f11ff679)) * add more apps ([0e04e39](0e04e396e4)) * add more apps ([451dd28](451dd2859b)) * add more apps ([ea1e36d](ea1e36da0d)) * add more apps ([94a03d0](94a03d070d)) * add more apps ([b210267](b2102678aa)) * add more apps ([c5b230e](c5b230e94e))
Starlight
pnpm create astro@latest -- --template starlight
Project Structure
Inside of your Astro + Starlight project, you'll see the following folders and files:
.
├── public/
├── src/
│ ├── assets/
│ ├── content/
│ │ └── docs/
│ └── content.config.ts
├── astro.config.mjs
├── package.json
└── tsconfig.json
Starlight looks for .md or .mdx files in the src/content/docs/ directory. Each file is exposed as a route based on its file name.
Images can be added to src/assets/ and embedded in Markdown with a relative link.
Static assets, like favicons, can be placed in the public/ directory.
Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
bun install |
Installs dependencies |
bun run dev |
Starts local dev server at localhost:4321 |
bun run build |
Build your production site to ./dist/ |
Description