41
loading...
This website collects cookies to deliver better user experience
add project
npm install -g firebase-tools
firebase login
firebase projects:list
npx create-react-app react-example
npm run build
build
.init firebase
hosting
use an existing project
build
since our app is in that folder.N
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
firebase deploy
npm run build
firebase deploy