Getting Started
Check your documentation for spelling mistakes; multilingual support.
Prerequisites
You will need to have a Starlight website set up. If you don't have one yet, you can follow the "Getting Started" guide in the Starlight docs to create one.
Installation
-
starlight-spell-checker
is a Starlight plugin. Install it by running the following command in your terminal:Terminal window npm install starlight-spell-checkerTerminal window pnpm add starlight-spell-checkerTerminal window yarn add starlight-spell-checker -
Configure the plugin in your Starlight configuration in the
astro.config.mjs
file.astro.config.mjs import starlight from '@astrojs/starlight'import { defineConfig } from 'astro/config'import starlightSpellChecker from 'starlight-spell-checker'export default defineConfig({integrations: [starlight({plugins: [starlightSpellChecker()],title: 'My Docs',}),],}) -
Start the development server to preview the plugin in action.
The Starlight Spell Checker plugin behavior can be tweaked using various configuration options.