I have setup Firebase Dynamic Links with an URL in the following format: a.b.c/d
However, emails sent by Firebase Authentication contain Dynamic Links of the format a.b.c/?link=... instead of a.b.c/d/?link=..., which means that they do not work.
I followed this guide / this guide to send the links.
Whenever I manually copy the link and add d/ in the URL, the Dynamic Links will work since Dynamic Links is set up this way in Firebase Console and also in firebase.json for Firebase Hosting.
"appAssociation": "AUTO",
"rewrites": [
{
"source": "/d/**",
"dynamicLinks": true
}
]
a.b.cwould disable the underlying web site. - creativecreatorormaybenot