map-alliance/firebase.json

26 lines
441 B
JSON
Raw Permalink Normal View History

2019-07-09 12:30:25 -04:00
{
"hosting": {
2023-12-11 21:32:05 -05:00
"public": "dist/browser",
2019-07-09 12:30:25 -04:00
"ignore": [
2023-12-11 21:32:05 -05:00
".*",
2019-07-09 12:30:25 -04:00
"firebase.json",
2023-12-11 21:32:05 -05:00
"node_modules"
2019-07-09 12:30:25 -04:00
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2019-09-02 12:56:19 -04:00
},
"firestore": {
2023-12-11 21:32:05 -05:00
"rules": "firebase/firestore.rules",
"indexes": "firebase/firestore.indexes.json"
2019-09-02 12:56:19 -04:00
},
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run build"
]
2019-07-09 12:30:25 -04:00
}
}