I configured my firebase.json in the following way
------
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint"
]
},
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [ {
"source": "/",
"destination": "
https://elearning.igeddit.ca/maintenance/",
"type": 301
} ]
}
}
----
That worked fine, it redirected to maintenance. But now I want the landing page to just be the root again, "
https://elearning.igeddit.ca"...how do I do this. My site keeps going to the maintenance page.
Thanks