monkeytype/firebase.json

31 lines
499 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",
2020-06-12 06:35:44 +08:00
"destination": "/",
"type": 301
}
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"cleanUrls": true,
"trailingSlash": false
},
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint"
]
2020-05-09 08:29:47 +08:00
}
}