Files
Reactive-Resume/firebase.json
2020-03-29 13:32:38 +05:30

35 lines
596 B
JSON

{
"hosting": [
{
"target": "app",
"public": "build",
"ignore": [
"firebase.json",
"docs",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
{
"target": "docs",
"public": "docs/.vuepress/dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
]
}