Is there any way to configure my manifest.json
to disable the browser popup asking to "install" the site?
I'm using the following JavaScript code to prevent it:
window.addEventListener('beforeinstallprompt', function(e) {
e.preventDefault();
return false;
});
But I need to prevent it also on the AMP version, and I can't run JavaScript code there.