When opening the application on a computer or browser in mobile a option for download or saving the page in desktop appear. There is some solution to disable this option?
You can add this to your <script>
tag in your index.html:
window.addEventListener('beforeinstallprompt', function (e) {
e.preventDefault();
return false;
});