docs: update documentation

This commit is contained in:
Maël Gangloff
2025-11-13 21:00:55 +01:00
parent 5095943461
commit 1d5a0b22e6

View File

@@ -1,10 +1,12 @@
// @ts-check
import {defineConfig} from 'astro/config';
import starlight from '@astrojs/starlight';
import {defineConfig} from 'astro/config'
import starlight from '@astrojs/starlight'
const BASE_URL = 'https://domainwatchdog.eu'
// https://astro.build/config
export default defineConfig({
site: 'https://domainwatchdog.eu',
site: BASE_URL,
integrations: [
starlight({
title: 'Domain Watchdog',
@@ -53,6 +55,10 @@ export default defineConfig({
}
},
head: [
{
tag: 'meta',
attrs: {property: 'og:image', content: BASE_URL + '/logo.png'},
},
{
tag: 'script',
attrs: {type: 'text/javascript'},
@@ -76,4 +82,4 @@ _paq.push(['enableHeartBeatTimer']);
]
})
]
});
})