49 lines
885 B
JSON
49 lines
885 B
JSON
{
|
|
"database": {
|
|
"rules": "y"
|
|
},
|
|
"firestore": {
|
|
"database": "(default)",
|
|
"location": "asia-northeast3",
|
|
"rules": "firestore.rules",
|
|
"indexes": "firestore.indexes.json"
|
|
},
|
|
"functions": [
|
|
{
|
|
"codebase": "default",
|
|
"source": ".",
|
|
"runtime": "nodejs22",
|
|
"ignore": [
|
|
"node_modules",
|
|
".git",
|
|
"firebase-debug.log",
|
|
"firebase-debug.*.log",
|
|
"*.local"
|
|
],
|
|
"predeploy": [
|
|
"npm --prefix \"$RESOURCE_DIR\" run lint",
|
|
"npm --prefix \"$RESOURCE_DIR\" run build"
|
|
]
|
|
}
|
|
],
|
|
"hosting": {
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"storage": {
|
|
"rules": "storage.rules"
|
|
},
|
|
"auth": {
|
|
"providers": {}
|
|
}
|
|
}
|