monkeytype/firebase.json

25 lines
385 B
JSON
Raw Normal View History

2020-05-09 08:29:47 +08:00
{
"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
}
}