From b2f47daafb165e69eb58fee8099256c0a90b9cc2 Mon Sep 17 00:00:00 2001 From: saturneric Date: Thu, 1 May 2025 22:35:44 +0200 Subject: chore: updates to Starlight v0.34.2 and theme-nova v0.6.1 Updates the Starlight dependency to version v0.34.2 and theme-nova to v0.6.1. Applies the starlight-theme-nova plugin for enhanced theming capabilities. Refactors the main page description and links to improve clarity and provide relevant information. --- astro.config.mjs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'astro.config.mjs') diff --git a/astro.config.mjs b/astro.config.mjs index cfc4570..9cdb046 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,11 +1,13 @@ import { defineConfig } from "astro/config"; import starlight from "@astrojs/starlight"; import netlify from "@astrojs/netlify"; +import starlightThemeNova from "starlight-theme-nova"; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ + plugins: [starlightThemeNova()], title: "GpgFrontend", description: "A Free, Easy-to-Use, Cross-Platform OpenPGP Crypto Tool.", logo: { @@ -25,7 +27,6 @@ export default defineConfig({ sidebar: [ { label: "Overview", - // Autogenerate a group of links for the 'guides' directory. autogenerate: { directory: "overview", }, @@ -55,9 +56,7 @@ export default defineConfig({ }, }, ], - customCss: [ - "./src/styles/custom.css", - ], + customCss: ["./src/styles/custom.css"], }), ], output: "server", -- cgit v1.2.3