mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-06 03:16:45 -06:00
27 lines
469 B
JSON
27 lines
469 B
JSON
{
|
|
"hosting": {
|
|
"public": "build",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "/api/hello-world/",
|
|
"function": "helloWorld"
|
|
},
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"functions": {
|
|
"predeploy": [
|
|
"npm --prefix \"$RESOURCE_DIR\" run lint",
|
|
"npm --prefix \"$RESOURCE_DIR\" run build"
|
|
]
|
|
}
|
|
}
|