monkeytype/firebase.json

24 lines
381 B
JSON
Raw Normal View History

2020-05-09 08:29:47 +08:00
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [{
"source": "/app",
"destination": "/"
},
{
"source": "/**",
"destination": "/app"
}],
"cleanUrls": true,
"trailingSlash": false
2020-05-09 08:29:47 +08:00
}
}