Skip to content
Snippets Groups Projects
firebase.json 382 B
Newer Older
  • Learn to ignore specific revisions
  • tspuller's avatar
    bla
    tspuller committed
    {
      "hosting": {
        "public": "build",
        "rewrites": [
          {
            "source": "**",
            "destination": "/index.html"
          }
        ],
        "ignore": [
          "firebase.json",
          "**/.*",
          "**/node_modules/**"
        ],
        "headers": [{
          "source" : "**",
          "headers" : [{
            "key" : "Cache-Control",
            "value" : "max-age=172800"
          }]
        }]
      }
    }