如何将 firebase 托管重写设置为除图像之外的源?
How to firebase hosting rewrites set to source except for images?
我想重写函数,除了图像,或者除了“**/.*”。
但是我找不到如何在 firevase.json 中编写 Glob。
请告诉我怎么写
此代码无效。
"rewrites": [
{
"source": "!(**/.*)",
"function": "frontend"
}
],
谢谢!
我自己解决了。
此代码有效!
在firevase.json
"rewrites": [
{
"source": "!**/*.@(html|css|js|png|jpg|jpeg|gif)",
"function": "app"
}
],
我想重写函数,除了图像,或者除了“**/.*”。 但是我找不到如何在 firevase.json 中编写 Glob。 请告诉我怎么写
此代码无效。
"rewrites": [
{
"source": "!(**/.*)",
"function": "frontend"
}
],
谢谢! 我自己解决了。
此代码有效!
在firevase.json
"rewrites": [
{
"source": "!**/*.@(html|css|js|png|jpg|jpeg|gif)",
"function": "app"
}
],