Files
Krow-workspace/firebase.json
2026-03-18 15:04:18 +01:00

89 lines
1.7 KiB
JSON

{
"firestore": {
"rules": "firebase/firestore.rules"
},
"storage": {
"rules": "firebase/storage.rules"
},
"hosting": [
{
"target": "launchpad",
"public": "internal/launchpad",
"ignore": [
"firebase.json",
"iap-users.txt",
"**/.*",
"**/node_modules/**"
]
},
{
"target": "app-dev",
"public": "apps/web/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "app-staging",
"public": "apps/web/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "api-harness-dev",
"public": "internal/api-harness/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "api-harness-staging",
"public": "internal/api-harness/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
],
"emulators": {
"dataconnect": {
"dataDir": "legacy/dataconnect-v1/.dataconnect/pgliteData"
}
},
"dataconnect": {
"source": "legacy/dataconnect-v1"
}
}