Peter Bonnebaigt
Peter Bonnebaigt

Reputation: 157

Firebase deploy only showing home page

I have deployed a web app from React and it has successfully loaded the app home page.

However, when I click to go to any of the other pages on the site it returns a 404 with page not found.

Upvotes: 0

Views: 190

Answers (1)

Peter Bonnebaigt
Peter Bonnebaigt

Reputation: 157

Adding the following, "rewrites:", to my firebase.json file solved the issue:

"hosting": {

    "public": "build",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
 "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]

Upvotes: 1

Related Questions