ui_kit/build/add-hosting-configs #135

Merged
hugo merged 2 commits from ui_kit/build/add-hosting-configs into master 2023-02-10 15:24:22 +00:00
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
"projects": {
"default": "studio-landpage"
}
}

View File

@ -32,6 +32,9 @@ migrate_working_dir/
.pub/ .pub/
/build/ /build/
# Firebase
.firebase/
# Symbolication related # Symbolication related
app.*.symbols app.*.symbols

View File

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