monkeytype/firebase.json

27 lines
482 B
JSON
Raw Normal View History

2020-05-09 08:29:47 +08:00
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
2020-07-04 20:07:59 +08:00
"redirects": [{
"source": "/soon",
"destination": "/",
"type": 301
}],
"rewrites": [{
"source": "**",
"destination": "/index.html"
}],
"cleanUrls": true,
"trailingSlash": false
2020-05-09 08:29:47 +08:00
}
2020-07-04 20:07:59 +08:00
// },
// "functions": {
// "predeploy": [
// "npm --prefix \"$RESOURCE_DIR\" run lint"
// ]
// }
}