· 6 years ago · Oct 17, 2019, 08:40 PM
1{
2 "hosting": {
3 "public": "dist",
4 "ignore": [
5 "firebase.json",
6 "**/.*",
7 "**/node_modules/**"
8 ],
9 "headers": [
10 {
11 "source": "/api/**",
12 "headers": [
13 {
14 "key": "Cache-Control",
15 "value": "no-cache, no-store, must-revalidate"
16 }
17 ]
18 }
19 ],
20 "rewrites": [
21 {
22 "source": "/api/**",
23 "run": {
24 "serviceId": "go-nuxt-mysql",
25 "region": "us-central1"
26 }
27 },
28 {
29 "source": "**",
30 "destination": "/index.html"
31 }
32 ]
33 }
34}