From 4e5d1f592142a724aec1373fdcc02049cb261131 Mon Sep 17 00:00:00 2001 From: Zed Date: Sun, 12 Jul 2026 22:14:56 +0200 Subject: [PATCH] =?UTF-8?q?PWA=20:=20vrai=20plein=20=C3=A9cran=20sur=20And?= =?UTF-8?q?roid=20(display=5Foverride=20fullscreen)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajoute display_override ["fullscreen","standalone"] au manifeste : mode plein écran (barre de statut masquée) sur Android où c'est supporté, repli standalone ailleurs (iOS). Réinstaller la PWA pour appliquer. Co-Authored-By: Claude Opus 4.8 --- vite.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vite.config.ts b/vite.config.ts index 08480ed..cfdc522 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -18,6 +18,9 @@ export default defineConfig({ start_url: "/", scope: "/", display: "standalone", + // Vrai plein écran sur Android (barre de statut masquée) là où c'est + // supporté ; repli en standalone (iOS, navigateurs sans fullscreen). + display_override: ["fullscreen", "standalone"], orientation: "portrait", theme_color: "#0b1120", background_color: "#0b1120",