Reputation: 39
I have developed a PWA app for my existing website using angular CLI v7. I want to deploy it on the top of my existing website. I want the existing website for desktop users, but for mobile users, it should open the PWA app.
How can I achieve this without any URL redirection?
Upvotes: 1
Views: 48
Reputation: 2974
As far as I know, this is not possible without url redirection. PWAs are similar to native apps but are deployed and accessible from web servers via URLs, so we don’t need to go through app stores. Whenever a new build of the app is deployed, the service worker treats that build as a new version of the app. You can check this site for more details.
Upvotes: 1