Skip to content

Commit 9fa68fd

Browse files
committed
Update PWA manifest orientation to any
Changed the orientation settings in PwaManifestBuilder.php from 'portrait' to 'any'. This allows the PWA to adjust to any screen orientation, enhancing user flexibility.
1 parent 2460e7c commit 9fa68fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/App/PwaManifestBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function build(): array
2626
"launch_handler" => [
2727
"client_mode" => "focus-existing"
2828
],
29-
"orientation" => "portrait",
29+
"orientation" => "any",
3030
"icons" => [
3131
[
3232
"src" => setting('app-icon-32') ?: url('/icon-32.png'),

0 commit comments

Comments
 (0)