PWA : vrai plein écran sur Android (display_override fullscreen)
Build and Publish Docker Image / build-and-push-image (push) Successful in 1m1s

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 <noreply@anthropic.com>
This commit is contained in:
Zed
2026-07-12 22:14:56 +02:00
parent 74351b24d2
commit 4e5d1f5921
+3
View File
@@ -18,6 +18,9 @@ export default defineConfig({
start_url: "/", start_url: "/",
scope: "/", scope: "/",
display: "standalone", 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", orientation: "portrait",
theme_color: "#0b1120", theme_color: "#0b1120",
background_color: "#0b1120", background_color: "#0b1120",