0

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 1

1

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" }

    ]

  }

}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.