monkeytype/firebase.json
2020-05-14 18:57:09 +01:00

21 lines
353 B
JSON

{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [ {
"source": "**",
"destination": "/index.html"
},{
"source": "!/@(js|css)/**",
"destination": "/index.html"
} ]
}
}