Getting Started
Prerequisites
Section titled “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
Section titled “Installation”-
starlight-fullview-mode
is a Starlight plugin. Install it by running the following command in your terminal:Terminal window npm install starlight-fullview-modeTerminal window pnpm add starlight-fullview-modeTerminal window yarn add starlight-fullview-mode -
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 starlightFullViewMode from 'starlight-fullview-mode'export default defineConfig({integrations: [starlight({plugins: [starlightFullViewMode({// Configuration options go here.})],title: 'My Docs',}),],})