I'm having trouble creating a PWA angular app with NodeJS + Express server.
- I'm serving my angular build --prod on a static path in Express
- I'm using routes in my Angular App
- The client manages to load
manifest.json
,ngsw-worker.js
,ngsw.json?ngsw-cache-bust=[RANDOM]
and all the rest of the files - The client creates an SW and shows this gear icon on every request
- The DevTools Disable cache checkbox is disabled ;)
Yet, when I check the Offline checkbox in DevTools and refresh the page I get 504 on the requested route, and then a few seconds later, a failed request from ngsw-worker.js
It's progress in my PWA app as I don't receive the Dinosaur chrome page.
Thanks in advance!