我想重写除图像或“ ** /。*”以外的函数。 但是我找不到如何在firevase.json中编写Globs。 请告诉我怎么写
此代码无效。
"rewrites": [
{
"source": "!(**/.*)",
"function": "frontend"
}
],
答案 0 :(得分:0)
谢谢! 我自己解决了。
此代码有效!
在firevase.json
"rewrites": [
{
"source": "!**/*.@(html|css|js|png|jpg|jpeg|gif)",
"function": "app"
}
],