hello world

This commit is contained in:
2022-11-24 13:43:26 +00:00
commit 08e76bb9c9
9 changed files with 4488 additions and 0 deletions

28
firebase.json Normal file
View File

@ -0,0 +1,28 @@
{
"hosting": {
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
"functions": [
{
"source": "functions",
"codebase": "default",
"ignore": [
"node_modules",
".git",
"firebase-debug.log",
"firebase-debug.*.log"
]
}
]
}