firebase.json 260 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1 2 3
{
  "hosting": {
    "public": "dist",
4 5 6 7 8 9 10
    "rewrites": [
      { "source": "/api/**", "function": "api" },
      {
        "source": "**",
        "destination": "/index.html"
      }
    ],
陈帅's avatar
陈帅 committed
11 12 13
    "ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
  }
}