Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 961 Bytes

DEV.md

File metadata and controls

37 lines (26 loc) · 961 Bytes

Development

The project structure is:

.
├── public/
├── src/
│   ├── assets/
│   ├── content/
│   │   ├── docs/
│   │   └── config.ts
│   └── env.d.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.

Credits

This project was bootstrapped using

npm create astro@latest -- --template starlight

Built with Starlight

👀 Want to learn more?

Check out Starlight’s docs, read the Astro documentation.