pompy.dev/firebase.json

40 lines
624 B
JSON

{
"hosting": [
{
"target": "main",
"cleanUrls": true,
"public": "apps/blog/build",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
},
{
"target": "blog",
"cleanUrls": true,
"public": "apps/blog/build",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
},
{
"target": "style",
"cleanUrls": true,
"public": "apps/style/storybook-static",
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"ignore": ["**/.*"]
}
]
}