| 1234567891011121314151617181920212223 | {  "hosting": {    "public": "build/web",    "ignore": [      "firebase.json",      "**/.*",      "**/node_modules/**"    ],    "rewrites": [      {        "source": "**",        "destination": "/index.html"      }    ],    "headers": [ {      "source": "**/*.@(png|jpg|jpeg|gif)",      "headers": [ {        "key": "Access-Control-Allow-Origin",        "value": "*"      } ]    } ]  }}
 |