From 301d417b0169dd4a113586c5230138a88f9429ec Mon Sep 17 00:00:00 2001 From: codevictory Date: Tue, 11 Jan 2022 17:33:43 +0200 Subject: [PATCH] Add dynamic links. --- firebase.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/firebase.json b/firebase.json index 0d3734a..4bb1cbc 100644 --- a/firebase.json +++ b/firebase.json @@ -1,6 +1,14 @@ { "hosting": { "public": ".", - "ignore": ["firebase.json", "**/.*", "**/node_modules/**"] + "ignore": ["firebase.json", "**/.*", "**/node_modules/**"], + "cleanUrls": true, + "appAssociation": "AUTO", + "rewrites": [ + { + "source": "/**", + "dynamicLinks": true + } + ] } }