A theme for documenting classes and courses. This is a fork of the Starlight Theme Rapide.
-
Initialize a new Astro Starlight project:
pnpm create astro --template starlight
-
Add the theme to your project:
pnpm add starlight-theme-openscript
-
Update your
starlight.config.mjs
to use the theme:import starlight from '@astrojs/starlight' import { defineConfig } from 'astro/config' import starlightThemeOpenscript from 'starlight-theme-openscript' export default defineConfig({ integrations: [ starlight({ plugins: [starlightThemeOpenscript()], title: 'My Course', }), ], })