Aiden Barrett
Aiden Barrett

Reputation: 349

Can you choose which pages show "add to homescreen"

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

Answers (1)

Aiden Barrett
Aiden Barrett

Reputation: 349

I intercepted the beforeinstallprompt event.

window.addEventListener('beforeinstallprompt', (e) => {
e.preventDefault();
})

Upvotes: 1

Related Questions