From 4d43225d6fdc336c14c8145d68288a2b82ae8128 Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Sat, 3 Jun 2023 19:21:44 +0200 Subject: docs: Remove welcome world sidebar entry --- docs/astro.config.mjs | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index ecabd2e9..45e0a3ce 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -39,11 +39,22 @@ export default defineConfig({ sidebar: [ { label: 'Start Here', - translations: { de: 'Beginne hier', es: 'Comienza aqui', ja: 'ここからはじめる' }, + translations: { + de: 'Beginne hier', + es: 'Comienza aqui', + ja: 'ここからはじめる', + }, items: [ - { label: 'Welcome, world', link: '/', translations: { ja: 'ようこそ、世界' } }, - { label: 'Getting Started', link: 'getting-started', translations: { ja: '入門' } }, - { label: 'Environmental Impact', link: 'environmental-impact', translations: { ja: '環境への負荷' } }, + { + label: 'Getting Started', + link: 'getting-started', + translations: { ja: '入門' }, + }, + { + label: 'Environmental Impact', + link: 'environmental-impact', + translations: { ja: '環境への負荷' }, + }, ], }, { @@ -53,7 +64,11 @@ export default defineConfig({ }, { label: 'Reference', - translations: { de: 'Referenz', es: 'Referencias', ja: 'リファレンス' }, + translations: { + de: 'Referenz', + es: 'Referencias', + ja: 'リファレンス', + }, autogenerate: { directory: 'reference' }, }, ], -- cgit