pompy.dev/firebase.json
2023-07-10 19:57:07 +09:00

53 lines
1.3 KiB
JSON

{
"hosting": [
{
"target": "main",
"cleanUrls": true,
"public": "apps/main/build",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
},
{
"target": "blog",
"cleanUrls": true,
"public": "apps/blog/build",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
},
{
"target": "portfolio",
"cleanUrls": true,
"public": "apps/portfolio/dist",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
},
{
"target": "resume",
"cleanUrls": true,
"public": "apps/resume/dist",
"rewrites": [
{
"source": "**",
"destination": "https://developomp.com/resume",
"type": 301
}
],
"ignore": ["**/.*"]
}
]
}