docs: update README.md

This commit is contained in:
Maël Gangloff
2025-11-16 13:44:56 +01:00
parent ea1e4e43bd
commit 96bbe8a0ed
4 changed files with 28 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import {defineConfig} from 'astro/config'
import starlight from '@astrojs/starlight'
import starlightLinksValidator from 'starlight-links-validator'
import mermaid from "astro-mermaid"
import starlightCoolerCredit from "starlight-cooler-credit"
const BASE_URL = 'https://domainwatchdog.eu'
@@ -112,9 +113,19 @@ _paq.push(['enableHeartBeatTimer']);
})();`
}
],
plugins: [starlightLinksValidator({
errorOnLocalLinks: false
})]
plugins: [
starlightLinksValidator({
errorOnLocalLinks: false
}),
starlightCoolerCredit({
credit: {
title: '',
href: 'https://maelgangloff.fr',
description: 'Maintained with ♡ by Maël Gangloff & contributors'
},
showImage: false
})
]
}),
mermaid()
]