F. firebase.json

1
{
2
  "hosting": {
3
    "public": "public",
4
    "headers": [
5
      {
6
        "source": "**",
7
        "headers": [
8
          {
9
            "key": "Cache-Control",
10
            "value": "no-cache, no-store, must-revalidate"
11
          },
12
          {
13
            "key": "Pragma",
14
            "value": "no-cache"
15
          },
16
          {
17
            "key": "Expires",
18
            "value": "0"
19
          }
20
        ]
21
      }
22
    ],
23
    "ignore": [
24
      "firebase.json",
25
      "**/.*",
26
      "**/node_modules/**"
27
    ]
28
  },
29
  "emulators": {
30
    "hosting": {
31
      "port": 5000
32
    },
33
    "ui": {
34
      "enabled": true
35
    },
36
    "singleProjectMode": true
37
  }
38
}
39
skip_previous skip_next