diff options
author | saturneric <[email protected]> | 2025-04-08 23:55:21 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-08 23:55:45 +0000 |
commit | eb6e4d1bc4a4f4e883cd921621a0cebc82d16caa (patch) | |
tree | a47f1ea58a8027481455896093815bdcb080ae96 /astro.config.mjs | |
parent | fix: solve format issues (diff) | |
download | Manual-eb6e4d1bc4a4f4e883cd921621a0cebc82d16caa.tar.gz Manual-eb6e4d1bc4a4f4e883cd921621a0cebc82d16caa.zip |
feat: adapt manual to v2.1.7
Diffstat (limited to 'astro.config.mjs')
-rw-r--r-- | astro.config.mjs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index eea9773..cfc4570 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -12,9 +12,13 @@ export default defineConfig({ src: "./src/assets/logo.svg", }, favicon: "/images/favicon.ico", - social: { - github: "https://github.com/saturneric/GpgFrontend", - }, + social: [ + { + icon: "github", + label: "GitHub", + href: "https://github.com/saturneric/GpgFrontend", + }, + ], editLink: { baseUrl: "https://github.com/saturneric/GpgFrontend-Manual/edit/main/", }, @@ -51,6 +55,9 @@ export default defineConfig({ }, }, ], + customCss: [ + "./src/styles/custom.css", + ], }), ], output: "server", |