deploying to firebase

This commit is contained in:
itsamejms
2026-06-09 09:40:46 +01:00
parent 05c7d6aef3
commit 4acaba19aa
4 changed files with 24 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{
"projects": {
"default": "itsamejms"
}
}
+1
View File
@@ -6,3 +6,4 @@ coverage/
*.log
.env*
!.env.example
.firebase
+1
View File
@@ -1 +1,2 @@
## Local AI presentation for LEDEX Portimao 2026
- `firebase deploy --only hosting:ledex-demo`
+17
View File
@@ -0,0 +1,17 @@
{
"hosting": {
"site": "ledex-demo",
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}