From e1e8cc4354c77305b2a4d5e18fa9ce59aa7cc5e0 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Thu, 25 Dec 2025 17:06:23 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20ajouter=20l'attribut=20lang=20=C3=A0=20l?= =?UTF-8?q?a=20balise=20html=20pour=20la=20conformit=C3=A9=20linguistique?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/app.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/app.vue b/app/app.vue index 3804b32..6b17156 100644 --- a/app/app.vue +++ b/app/app.vue @@ -9,7 +9,10 @@ useHead({ }, link: [ { rel: 'icon', type: 'image/webp', href: '/favicon.webp' } - ] + ], + htmlAttrs: { + lang: 'en' + } })