aboutsummaryrefslogtreecommitdiffstats
path: root/astro.config.mjs
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-05-01 20:35:44 +0000
committersaturneric <[email protected]>2025-05-01 20:35:44 +0000
commitb2f47daafb165e69eb58fee8099256c0a90b9cc2 (patch)
tree03b26f72a3e00b216a7fb440623ecdf06e101c20 /astro.config.mjs
parentfeat: attach deepwiki link (diff)
downloadManual-b2f47daafb165e69eb58fee8099256c0a90b9cc2.tar.gz
Manual-b2f47daafb165e69eb58fee8099256c0a90b9cc2.zip
chore: updates to Starlight v0.34.2 and theme-nova v0.6.1HEADmain
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.
Diffstat (limited to 'astro.config.mjs')
-rw-r--r--astro.config.mjs7
1 files changed, 3 insertions, 4 deletions
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",