5,543 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-3
votes
0
answers
29
views
PWA app Google Auth typing not working (keyboard does not display, as if frozen) [closed]
PWA App works on web, works also on safari browser for sign in.
However:
When in bookmark saved PWA app, the google auth does not have the users saved account (understandable as it creates a new ...
1
vote
0
answers
45
views
Safari UI appears in iOS PWA after navigating from Dashboard to another route
I am developing a Progressive Web App using Next.js and testing on iOS Safari version 26.2.
When I add the app to the home screen from the landing page /, the app runs correctly in standalone mode and ...
Best practices
0
votes
0
replies
20
views
Where to place service worker file in Nuxt?
I am building a site on nuxt and making pwa now. I need a service worker.
I've studied how to add it to just pure HTML+JS site - need to write a js file with worker and register it by static path in ...
-3
votes
0
answers
52
views
how to hide pwa url address bar [duplicate]
I created a pwa app using the liquityfx website but it shows the url address bar. I want to hide it. Can anyone help me?
I attached a screenshot of my pwa application.
I tried many ways but it does ...
-1
votes
0
answers
38
views
Why does my Web App’s "Add to Home Screen" prompt not show on Android, even though the PWA criteria seem to be met? [duplicate]
I’m trying to make my web app installable as a PWA on Android.
The app loads fine, works offline, and Lighthouse gives me a passing PWA score.
But the "Add to Home Screen" prompt never appears on ...
0
votes
1
answer
83
views
Chrome PWA no longer calculating dvh properly on initial load
I have a PWA with "display": "standalone" set in my manifest. The app uses body { height: 100dvh } to fill the entire space of the visible viewport. This has been working for ...
0
votes
0
answers
27
views
Mobile PWA redirects to login on external public URL while desktop PWA works fine
I have a PWA installed on both desktop and mobile. I want it to open a public URL: https://fj4fkaoplyuwyexf1mob.app.clientclub.net/communities/groups/mvp-love-hub/home?invite=690ad2c50e22b19a200b4afa
...
0
votes
0
answers
38
views
Using multiple ServiceWorkers and push providers in a PWA
We have a PWA and we want to send Web Push notifications using two different providers.
If we register two separate ServiceWorkers under different scopes, can we use each ServiceWorker’s own ...
0
votes
0
answers
29
views
How to debug service worker in phone-installed PWA?
I am having issues with fetch() statements in my service worker in a progressive web app installed on my Android phone (with Chrome). Ordinarily this would be easy to debug by sending messages to ...
Advice
0
votes
0
replies
56
views
Creating PWA for individual docs, sheets etc
I would like to create PWA that acts as a standalone app in osx for individual docs (like notes, financial statements etc). But Google PWA redirects the PWAs to the landing page for google docs or ...
0
votes
0
answers
24
views
Weird scrolling behaviour in vite-pwa app on desktop
I'm experiencing strange scrolling behavior in my vite-pwa on the desktop.
The problem is as follows:
I have the component BulkDeltePanel.tsx, which contains the following:
<Sidebar visible={props....
0
votes
0
answers
45
views
offline.html not showing correctly in PWA 1.0.7 for nuxt 3.13
I have nuxt 3.13 with PWA module 1.0.7
the service worker is work fine but offline page not working.
I create offline.html in public folder and nuxt.config.js is like below
export default ...
1
vote
0
answers
60
views
Service Worker always serves cached index.html even with NetworkFirst runtimeCaching
I’m building a React SPA with Vite and vite-plugin-pwa, and I want my app to:
Work offline (so index.html must be precached).
Fetch a fresh index.html from the network when online.
Keep JS/CSS/images ...
1
vote
0
answers
167
views
Prefetch HTML page AND external resources with service worker
I want to use a service worker to precache a webpage on install.
It is very easy to precache the HTML itself
self.addEventListener('install', (event) => {
event.waitUntil(
caches.open('v1')
...
1
vote
0
answers
81
views
Does iPhone support persistent microphone permission for web apps?
I have a web app that requires access to the microphone. On iPhone browsers (both Chrome and Safari), users have to grant microphone permission on every page reload. This results in poor user ...