mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-07 19:18:36 +03:00
32 lines
533 B
JSON
32 lines
533 B
JSON
{
|
|
"hosting": {
|
|
"public": "dist",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
},
|
|
"functions": [
|
|
{
|
|
"source": "functions",
|
|
"codebase": "default",
|
|
"ignore": [
|
|
"node_modules",
|
|
".git",
|
|
"firebase-debug.log",
|
|
"firebase-debug.*.log"
|
|
],
|
|
"predeploy": [
|
|
"npm --prefix \"$RESOURCE_DIR\" run lint"
|
|
]
|
|
}
|
|
]
|
|
}
|