mirror of
https://github.com/romancm/gamebrary
synced 2024-11-10 05:34:15 +00:00
47 lines
791 B
JSON
Executable file
47 lines
791 B
JSON
Executable file
{
|
|
"database": {
|
|
"rules": "firebase/database.rules.json"
|
|
},
|
|
"firestore": {
|
|
"rules": "firebase/firestore.rules",
|
|
"indexes": "firebase/firestore.indexes.json"
|
|
},
|
|
"hosting": {
|
|
"public": "dist",
|
|
"ignore": [
|
|
"firebase/firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"storage": {
|
|
"rules": "firebase/storage.rules"
|
|
},
|
|
"emulators": {
|
|
"functions": {
|
|
"port": 5001
|
|
},
|
|
"firestore": {
|
|
"port": 8080
|
|
},
|
|
"database": {
|
|
"port": 9000
|
|
},
|
|
"hosting": {
|
|
"port": 5000
|
|
},
|
|
"storage": {
|
|
"port": 9199
|
|
},
|
|
"ui": {
|
|
"enabled": true
|
|
},
|
|
"singleProjectMode": true
|
|
}
|
|
}
|