Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
37 views

Here is my code. Both index.html and service-worker.js are served on http://localhost:8080. index.html <!doctype html> <html lang="zh"> <head> <script> if ...
West's user avatar
  • 99
0 votes
0 answers
27 views

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 ...
Omid Golparvar's user avatar
Advice
0 votes
0 replies
32 views

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 ...
murlex's user avatar
  • 85
0 votes
0 answers
33 views

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 ...
Amir's user avatar
  • 4,131
1 vote
0 answers
153 views

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') ...
Nils's user avatar
  • 434
0 votes
0 answers
165 views

A simple PWA works well in Chrome / Android, but if it loses focus by opening another app, and you bring focus back to the pwa, this line above "home" appears. The same thing happens when ...
twharmon's user avatar
  • 3,790
2 votes
0 answers
67 views

We are building an offline Forge Viewer project using Vue + Vite, which will later be wrapped in an iOS app (Capacitor). In offline mode, we need to serve model files and translations from a local ...
Ahmed Abd Elnaser's user avatar
0 votes
1 answer
43 views

Since the ChromeOS update on September 25, 2025 (not sure if this is the cause), my custom protocol handlers (web+collab:// and collab://) for an Isolated Web App (IWA) have stopped functioning. ...
J4GD33P 51NGH's user avatar
0 votes
0 answers
48 views

I've got a progressive web app wrapped in PWABuilder code for upload into the Apple App Store. It had been a long time since we had created a new version of this wrapper code or uploaded any new ...
Stephen's user avatar
  • 2,207
0 votes
0 answers
43 views

After a few years of working at the back of the backend, I'm back working on a full-stack project. We need a username + password login with MFA which I'll use a TOTP for. There will be no third-party ...
user2268997's user avatar
  • 1,411
0 votes
0 answers
43 views

I’m building a PWA with React (frontend) and Node.js/Express (backend). On login, I save a JWT token in localStorage. I also tried using cookies with cookie-parser and express-session. This works fine ...
Karyan Seow's user avatar
2 votes
0 answers
84 views

very strange problem I have on iOS when shared web as an app (pwa) to home screen. Whenever I use it via safari browser on iPhone, it works 100% fine every time. However, when I put it as an app on ...
Eimantas Dev's user avatar
  • 1,386
0 votes
0 answers
49 views

My manifest.json file. "screenshots": [ { "src": "screenshot/mobile/iphone14.png", "form_factor": "narrow", "sizes": ...
Mlhkrtss's user avatar
0 votes
0 answers
69 views

I'm publishing a Progressive Web App as a Trusted Web Activity (TWA) on the Play Store, but when users open the app, it still shows the “Running in Chrome” message. I’ve followed the documentation ...
Alberto Ardian's user avatar
0 votes
0 answers
36 views

I am trying to debug an issue with my app in Samsung Internet. I cannot debug it through remote debugging with chrome://inspect as per issue here: remote debugging Samsung Internet gives HTTP/1.1 404 ...
chibis's user avatar
  • 898
0 votes
1 answer
59 views

I'm working on a Flutter web PWA that gets installed on Android devices, and I'm running into a frustrating navigation issue with the browser's back button. The Problem My app has a typical flow: Home ...
Sampath Kumara's user avatar
1 vote
1 answer
48 views

I'm trying to make CRUD work on Blazor Webassembly, but absolutely nothing works. InvalidOperationException: Cannot provide a value for property 'QuestionService' on type 'PWAQuestionWASM.Client.Pages....
IgramRel's user avatar
1 vote
0 answers
94 views

I tried installing a PWA that I made to my android, but I can't find any way to do so as I need to host in https. First I tried with GitHub Pages which hosts the web for me and after succesfully ...
Agente 156's user avatar
0 votes
0 answers
192 views

I have a PWA and want to show content underneath the status-bar so it feels more "native". When I use black-translucent with apples meta-tag I get the result I want on iOS - but I can't get ...
Stephan D.'s user avatar
2 votes
1 answer
105 views

I'm developing a Nuxt 3 PWA on localhost and encountering an issue where the beforeinstallprompt event is not firing. I've set up my Service Worker and web app manifest, and there are no errors in the ...
Tsuev Mansur's user avatar
0 votes
1 answer
78 views

I want to add the install button to my ViewAnnouncement.jsx page. I already have a manifest.json set up. I already added console something inside the beforeinstallprompt to ensure it is firing and it ...
ipang's user avatar
  • 1
0 votes
1 answer
28 views

Can I detect changing of lifecycle state of PWA using WidgetsBindingObserver? In my app I have to show new content on a new day. For the mobile app I am able to use WidgetsBindingObserver to check ...
Vaibhav's user avatar
  • 13
0 votes
0 answers
22 views

I'm building a meditation timer as a React PWA. When users add it to their iPhone homescreen and run it as a standalone app, the end bell sound (using an element) sometimes rings both at the start ...
asyncasana's user avatar
0 votes
0 answers
46 views

Is it possible to allow a PWA Blazor WASM application that hosted online to connect to a local database SQL Server after downloading it by the user? I have modified my connection string by changing ...
Abdulsalam Elsharif's user avatar
0 votes
0 answers
30 views

Is the following sequence of events possible?: I have resource image.jpg cached via my service worker. I do a deployment on the server, image.jpg no longer exists. Browser decides it wants to clear ...
Cheetah's user avatar
  • 14.5k

1
2 3 4 5
111