From 7e2a2e7e8819a4931704ec17ec73e871d01fa904 Mon Sep 17 00:00:00 2001 From: Francesco Raso <116293603+0xfraso@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:57:27 +0100 Subject: [PATCH] fix(pwa): allow any screen orientation in PWA manifest (#422) The manifest was locked to portrait-primary, preventing landscape mode on tablets even with device rotation enabled. Changed to "any" to follow system rotation settings. --- packages/web/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/index.html b/packages/web/index.html index eeadb24c..92126e44 100644 --- a/packages/web/index.html +++ b/packages/web/index.html @@ -32,7 +32,7 @@ "display": "standalone", "background_color": "#151313", "theme_color": "#edb449", - "orientation": "portrait-primary", + "orientation": "any", "icons": [ { "src": baseUrl + "/pwa-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" }, { "src": baseUrl + "/pwa-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any" },