Skip to content

Commit 72767d3

Browse files
authored
Merge pull request #29 from ProLoser/feat/pwa-fullscreen-manifest
feat: Update PWA display mode to fullscreen Changes the PWA manifest configuration in vite.config.ts to use `display: 'fullscreen'` instead of `display: 'standalone'`. This is intended to provide a more immersive experience by making the application take over the entire screen, potentially hiding the system status bar in addition to browser chrome. This change adheres to the requirement of using only manifest updates. In-app UI elements will remain visible, and the 'portrait' orientation preference is maintained.
2 parents 3dee392 + 5e37747 commit 72767d3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default defineConfig({
1616
manifest: {
1717
theme_color: '#ed7560',
1818
orientation: 'portrait',
19+
display: 'fullscreen',
1920
icons: [
2021
{
2122
src: 'android-chrome-192x192.png',

0 commit comments

Comments
 (0)