monkeytype/firebase.json

28 lines
441 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/**"
],
"redirects": [
{
"source": "/soon",
"destination": "/"
}
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"cleanUrls": true,
"trailingSlash": false
2020-05-09 08:29:47 +08:00
}
}