From 96408d39eadfec83e13072aa8197f83185af2441 Mon Sep 17 00:00:00 2001 From: Benoit TRAVERS Date: Tue, 30 Jun 2026 10:56:36 +0200 Subject: [PATCH] chore(website): add Google Search Console verification meta tag Adds the google-site-verification to the site head so the domain can be verified in Google Search Console. Rendered into every page's by VitePress. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/website/.vitepress/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/website/.vitepress/config.ts b/apps/website/.vitepress/config.ts index 3e32b77..c96682f 100644 --- a/apps/website/.vitepress/config.ts +++ b/apps/website/.vitepress/config.ts @@ -17,6 +17,7 @@ export default defineConfig({ sitemap: { hostname: SITE_URL }, head: [ + ["meta", { name: "google-site-verification", content: "u6ZPW5bWbP9G1yF5Sv7B4fSOJm5rLbZWeH858tmisTc" }], ["link", { rel: "icon", type: "image/svg+xml", href: "/favicon.svg" }], ["link", { rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" }], ["meta", { property: "og:type", content: "website" }],