From 28e390b42b85be618bb801604f29796ecc565eb5 Mon Sep 17 00:00:00 2001 From: Alexander Steiner Date: Thu, 18 Dec 2025 14:45:48 +0100 Subject: [PATCH] PB-2144 Fix attribute name This fixes a mistake in #99. According to the [help page](https://support.google.com/webmasters/answer/9008080?hl=en#html_verification&zippy=%2Chtml-tag) on HTML tags of the Google Search Console, we need to set the HTML header attribute to "name", not "property". So ```html ``` not ```html ``` --- .vitepress/config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 69b6946..b60e547 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -38,7 +38,7 @@ export default defineConfig({ [ 'meta', { - property: 'google-site-verification', + name: 'google-site-verification', content: 'IuPnZ3S0PNfvJ3Qi-IHG36q2lQ5UIvdQ-7q0_jOVZb8', }, ],