26 lines
441 B
JSON
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"
|
|
]
|
|
}
|
|
}
|