mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-05 23:16:33 -06:00
30 lines
518 B
JSON
30 lines
518 B
JSON
{
|
|
"hosting": {
|
|
"public": "build",
|
|
"predeploy": [
|
|
"yarn run build"
|
|
],
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "/api/surrounding",
|
|
"function": "surrounding"
|
|
},
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"functions": {
|
|
"predeploy": [
|
|
"npm --prefix \"$RESOURCE_DIR\" run lint",
|
|
"npm --prefix \"$RESOURCE_DIR\" run build"
|
|
]
|
|
}
|
|
}
|