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