I keep getting the following message in Firebase dynamic links so can someone help me? https://deep.example_url.com is not connected properly Your Dynamic Links path prefix is not configured in firebase.json. Check your firebase.json configuration and try again.
1 Answer
Make sure that the Dynamic link rewrite rule comes before the existing rule as rewrites are processed in the order they are listed. See this guide for additional details.
Here is an example of a fixed firebase.json:
{
"hosting": {
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"appAssociation": "AUTO",
"rewrites": [
{ "source": "/urlPrefix/**", "dynamicLinks": true},
{ "source": "/**", "destination": "index.html" }
]
}
}