52 lines
878 B
JSON
52 lines
878 B
JSON
{
|
|
"firestore": {
|
|
"rules": "firestore.rules",
|
|
"indexes": "firestore.indexes.json"
|
|
},
|
|
"hosting": {
|
|
"public": "dist/wgenerator/browser",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
],
|
|
"headers": [
|
|
{
|
|
"source": "/**/!(*.*)",
|
|
"headers": [
|
|
{
|
|
"key": "Cache-Control",
|
|
"value": "max-age=1"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"source": "**/*.@(js|css)",
|
|
"headers": [
|
|
{
|
|
"key": "Cache-Control",
|
|
"value": "max-age=846000"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"emulators": {
|
|
"firestore": {
|
|
"port": 8080
|
|
},
|
|
"database": {
|
|
"port": 9000
|
|
},
|
|
"hosting": {
|
|
"port": 5000
|
|
}
|
|
}
|
|
}
|