functions-samples icon indicating copy to clipboard operation
functions-samples copied to clipboard

rewrite /path to root domain(/) for Single page application with any method

Open ajaysourcedigital opened this issue 5 years ago • 0 comments

I am trying to map domain.com to domain.com/#/api. But it always routes back to home page. Anything I can do here to fix this ?

  "hosting": {
    "public": "public",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "rewrites": [
      {
        "source": "**",
        "destination": "/#/api"
      }
    ]
  }
}

ajaysourcedigital avatar Jun 09 '20 05:06 ajaysourcedigital