I have finished creating a react app using typescript and below is what I did to deploy the app to firebase
yarn buildfirebase initfirebase deploy
Now I have pointed the public folder to my build folder as below
"hosting": {
"public": "build",
"ignore": [
I am using typescript in the react app
Yet, whenever it deploys I always get a blank page.
What am I doing wrong?