I have a progressive web-app : Click here
As you can see, at the end of the domain, there is a /language. My PWA is accessible for /en too as it is completely i18n compatible.
My problem is that when I try to set it up on the desktop it still points to '/' and it cannot find any index.html. The language path is not taken into account it seems. Part of my manifest.json is:
"display": "standalone",
"scope": "./*",
"start_url": "/",
I have tried setting the scope like this because setting it to "." does not work. Now the message is: Property 'scope' ignored. Start url should be within scope of scope URL.
Other point: it is deployed to firebase.
Thanks for any help.