diff --git a/index.html b/index.html
index 40b52ffe739..67f999e7704 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();
+ });