From a288405ca8c9513625d1650941fcd42056b1755a Mon Sep 17 00:00:00 2001 From: Frank Schwenk Date: Thu, 16 Apr 2026 13:19:27 +0200 Subject: [PATCH] fix(pwa): allow rotation and request fullscreen Remove forced portrait orientation and request fullscreen display mode. Made-with: Cursor --- public/manifest.webmanifest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest index cdc7637..cf98c3e 100644 --- a/public/manifest.webmanifest +++ b/public/manifest.webmanifest @@ -4,8 +4,8 @@ "description": "Professional pool and billiards scoring application", "start_url": "/", "scope": "/", - "display": "standalone", - "orientation": "portrait", + "display": "fullscreen", + "display_override": ["fullscreen", "standalone"], "background_color": "#1a1a1a", "theme_color": "#1a1a1a", "lang": "de",