diff --git a/index.html b/index.html index 40b52ffe7..67f999e77 100644 --- a/index.html +++ b/index.html @@ -39,6 +39,11 @@ ); }); } + + window.addEventListener('beforeinstallprompt', e => { + // Prevent invasive install prompt (users are still able to install as an app) + e.preventDefault(); + });