score:0

i believe the issue was that i was not building correctly. after changing firebase.json to

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

and running npm build, i deployed as expected.


Related Query

More Query from same tag