Les docs pour les projets de la Division. https://docs.stalla.dev
  • Astro 48.5%
  • JavaScript 31.5%
  • MDX 11.3%
  • TypeScript 8.2%
  • CSS 0.5%
Find a file
Lameur 93b26a3a8e
Update deps
Signed-off-by: Lameur <adam.auclair@outlook.fr>
2026-03-24 06:34:53 +01:00
.mise Fix PWAs, official release 2026-03-18 19:13:38 +01:00
public Add PWA's 2026-03-18 17:04:44 +01:00
src Fix 404 i18n 2026-03-22 11:48:11 +01:00
.gitignore init 2025-12-04 12:56:19 +01:00
astro.config.mjs Fix PWA's missing webmanifest file 2026-03-18 20:41:38 +01:00
LICENSE Update pkg and compiler options 2026-03-09 20:17:29 +01:00
mise.toml Ajout de nouvelles configurations et dépendances pour le projet, y compris des tâches de construction et de développement, ainsi que des icônes et des styles personnalisés. 2026-02-22 12:07:17 +01:00
package.json Update deps 2026-03-24 06:34:53 +01:00
README.md init 2025-12-04 12:56:19 +01:00
tsconfig.json Fix PWA's missing webmanifest file 2026-03-18 20:41:38 +01:00

Starlight Starter Kit: Basics

Built with Starlight

yarn create astro@latest -- --template starlight

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

🚀 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
yarn install Installs dependencies
yarn dev Starts local dev server at localhost:4321
yarn build Build your production site to ./dist/
yarn preview Preview your build locally, before deploying
yarn astro ... Run CLI commands like astro add, astro check
yarn astro -- --help Get help using the Astro CLI

👀 Want to learn more?

Check out Starlights docs, read the Astro documentation, or jump into the Astro Discord server.