diff options
| author | saturneric <[email protected]> | 2025-07-07 08:52:25 +0000 |
|---|---|---|
| committer | saturneric <[email protected]> | 2025-07-07 08:52:25 +0000 |
| commit | c2f5aa03d16b09cc262602267c2ccfe99db4d09d (patch) | |
| tree | b9cfd170661312df01fbf94b952ca48bfd27a5df /astro.config.mjs | |
| parent | docs(extra): improve formatting and structure in algorithms comparison (diff) | |
| download | Manual-c2f5aa03d16b09cc262602267c2ccfe99db4d09d.tar.gz Manual-c2f5aa03d16b09cc262602267c2ccfe99db4d09d.zip | |
feat(config): add starlight-links-validator integration
* Integrated `starlight-links-validator` into the Astro configuration.
* Updated `package.json` and `package-lock.json` to include the new dependency.
* Removed outdated note from the sync public keys documentation.
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 3d25b76..00348b3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -3,13 +3,14 @@ import starlight from "@astrojs/starlight"; import netlify from "@astrojs/netlify"; import starlightThemeNova from "starlight-theme-nova"; import sitemap from "@astrojs/sitemap"; +import starlightLinksValidator from "starlight-links-validator"; // https://astro.build/config export default defineConfig({ site: "https://gpgfrontend.bktus.com", integrations: [ starlight({ - plugins: [starlightThemeNova()], + plugins: [starlightThemeNova(), starlightLinksValidator()], title: "GpgFrontend", description: "A Free, Easy-to-Use, Cross-Platform OpenPGP Crypto Tool.", logo: { |
