I checked the docs here: https://firebase.google.com/docs/hosting/multisites and here: https://firebase.google.com/docs/cli/targets but I don't think I understand them well enough and I am unable to host different content on different subdomains within the same domain using Firebase. E.G (page.website.com and website.com) My Firebase.json file looks like this:
{
"hosting": [{
"target": "mainSite",
"public": "public"
},
{
"target": "authentication",
"public": "authentication"
}
]
}
I don't really understand where to direct the folder to the subdomain using:
firebase target:apply hosting TARGET_NAME RESOURCE_IDENTIFIER
Is that RESOURCE_IDENTIFIER? E.G is website.com or whatever site what I should put into RESOURCE_IDENTIFIER? I am lost.