Integrate Firebase Hosting

This commit is contained in:
2022-10-24 11:06:57 +02:00
parent b7599b7d56
commit 477a1b44bd
3 changed files with 24 additions and 0 deletions

16
firebase.json Normal file
View File

@@ -0,0 +1,16 @@
{
"hosting": {
"public": "dist",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}