CAU-NLP-Spring-2019-PQ-Man-.../firebase.json

24 lines
425 B
JSON
Raw Normal View History

2019-06-06 08:43:17 +00:00
{
"hosting": {
"predeploy": "npm run build-prod",
"public": "dist/PQ-Man",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
2019-06-12 12:47:36 +00:00
},
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint",
"npm --prefix \"$RESOURCE_DIR\" run build"
]
2019-06-06 08:43:17 +00:00
}
}