Reputation: 89
My nuxt web application
is part of the main website
, but we want the web app to be installable as a PWA
, is there a way that after I install it, whenever I want to launch the app on my phone, it redirects to a different route, for example, 'www.example.com/login
' instead of the homepage 'www.example.com
'.
Upvotes: 0
Views: 1550
Reputation: 814
In your manifest.json
you can set a "start_url"
field. In your case, I think, the solution will be: "start_url": "/login"
Upvotes: 1