Files
tiennm99 fef7067cc0 feat: add meetee and tiennm hosting sites under miti99 project
Configure Firebase multi-site hosting so the redirect deploys to
meetee.web.app and tiennm.web.app alongside miti99.web.app, all
sharing the same public/ content under the miti99 project.
2026-05-11 16:47:09 +07:00

25 lines
544 B
JSON

{
"hosting": [
{
"target": "miti99",
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
},
{
"target": "meetee",
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
},
{
"target": "tiennm",
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
},
{
"target": "tiennm99",
"public": "public",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
}
]
}