44 lines
679 B
JSON
44 lines
679 B
JSON
{
|
|
"hosting": {
|
|
"public": "dist",
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
],
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
]
|
|
},
|
|
"functions": [
|
|
{
|
|
"source": "functions",
|
|
"codebase": "default",
|
|
"ignore": [
|
|
"node_modules",
|
|
".git",
|
|
"firebase-debug.log",
|
|
"firebase-debug.*.log"
|
|
]
|
|
}
|
|
],
|
|
"emulators": {
|
|
"functions": {
|
|
"port": 5001
|
|
},
|
|
"firestore": {
|
|
"port": 5002
|
|
},
|
|
"hosting": {
|
|
"port": 5000
|
|
},
|
|
"ui": {
|
|
"enabled": true
|
|
},
|
|
"singleProjectMode": true
|
|
}
|
|
}
|