monkeytype/firebase.json

25 lines
478 B
JSON
Raw Normal View History

2020-05-09 08:29:47 +08:00
{
"hosting": {
2020-11-02 19:19:24 +08:00
"public": "dist",
2020-08-12 05:02:25 +08:00
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
2020-11-01 02:03:28 +08:00
{
"source": "/privacy-policy",
"destination": "/privacy-policy.html"
},
2020-08-12 05:02:25 +08:00
{
"source": "**",
"destination": "/index.html"
}
2020-05-09 08:29:47 +08:00
],
"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"
// ]
// }
2020-08-12 05:02:25 +08:00
}