VIBN Frontend for Coolify deployment
This commit is contained in:
60
firebase.json
Normal file
60
firebase.json
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user