firebase.json 373 Bytes
Newer Older
1 2 3 4 5 6 7 8
{
  "rules": "firebase_rules.json",
  "hosting": {
    "public": "doc",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
9 10 11
    ],
    "headers": [
      {
12
        "source": "snippets/**.dart",
13 14 15
        "headers": [
          {
            "key": "Access-Control-Allow-Origin",
16
            "value": "*"
17 18 19
          }
        ]
      }
20 21 22
    ]
  }
}