Reputation: 349
I'm setting up a PWA and would ideally like the "add to homescreen" message to show on a specific page as it adds the most context to the web app.
Upvotes: 0
Views: 172
Reputation: 349
I intercepted the beforeinstallprompt event.
window.addEventListener('beforeinstallprompt', (e) => {
e.preventDefault();
})
Upvotes: 1