Dhruw Kumar
Dhruw Kumar

Reputation: 39

How to deploy pwa app developed in angular-cli v7 on the top of the existing website?

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

Answers (1)

Jessica Rodriguez
Jessica Rodriguez

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

Related Questions