homefront/website/firebase.json

17 lines
209 B
JSON
Raw Normal View History

2021-06-19 20:11:25 -04:00
{
"hosting": {
"public": "dist/HomeFront",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}