setting up firebase for static hosting

This commit is contained in:
itsamejms
2026-05-28 16:28:13 +01:00
parent c5f4221c8d
commit 68c393af5e
4 changed files with 57 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}