map-alliance/firebase.json
ztimson b0d74321c8
Some checks failed
Build Functions / Build NPM Project (push) Successful in 18s
Build Website / Build NPM Project (push) Failing after 24s
Build Website / Tag Version (push) Has been skipped
Build Website / Build & Push Dockerfile (push) Has been skipped
Updated angular version to latest
2023-12-11 21:32:05 -05:00

26 lines
441 B
JSON

{
"hosting": {
"public": "dist/browser",
"ignore": [
".*",
"firebase.json",
"node_modules"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"firestore": {
"rules": "firebase/firestore.rules",
"indexes": "firebase/firestore.indexes.json"
},
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run build"
]
}
}