Я вызываю функцию при каждом запросе. могу ли я исключить каталог / test из перезаписи?
{
"hosting":{
"public":"build",
"ignore":[
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites":[
{
"source":"/**",
"function":"helloWorld"
},
{
"source":"**",
"destination":"/index.html"
}
]
},
"functions":{
"predeploy":[
"npm --prefix \"$RESOURCE_DIR\" run lint"
]
}
}