From 1d5a0b22e6099e6e4b096ec31c15253df77faf75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Thu, 13 Nov 2025 21:00:55 +0100 Subject: [PATCH] docs: update documentation --- docs/astro.config.mjs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 6e6803b..0e0ce23 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -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']); ] }) ] -}); +})