61 lines
991 B
JSON
61 lines
991 B
JSON
{
|
|
"firestore": {
|
|
"rules": "firestore.rules",
|
|
"indexes": "firestore.indexes.json"
|
|
},
|
|
"storage": {
|
|
"rules": "storage.rules"
|
|
},
|
|
"hosting": {
|
|
"public": "public",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"function": "nextjsFunc"
|
|
}
|
|
]
|
|
},
|
|
"functions": [{
|
|
"source": ".",
|
|
"runtime": "nodejs22",
|
|
"codebase": "default",
|
|
"memory": "2GB",
|
|
"timeout": "300s",
|
|
"ignore": [
|
|
"node_modules",
|
|
".git",
|
|
"firebase-debug.log",
|
|
"firebase-debug.*.log",
|
|
".next",
|
|
"pnpm-lock.yaml",
|
|
"app",
|
|
"components",
|
|
"lib",
|
|
"public",
|
|
"scripts"
|
|
]
|
|
}],
|
|
"emulators": {
|
|
"auth": {
|
|
"port": 9099
|
|
},
|
|
"firestore": {
|
|
"port": 8080
|
|
},
|
|
"storage": {
|
|
"port": 9199
|
|
},
|
|
"ui": {
|
|
"enabled": true,
|
|
"port": 4000
|
|
},
|
|
"singleProjectMode": true
|
|
}
|
|
}
|
|
|