diff --git a/packages/wyatt_ui_kit/example/.firebaserc b/packages/wyatt_ui_kit/example/.firebaserc new file mode 100644 index 00000000..c5fa1ddd --- /dev/null +++ b/packages/wyatt_ui_kit/example/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "studio-landpage" + } +} diff --git a/packages/wyatt_ui_kit/example/.gitignore b/packages/wyatt_ui_kit/example/.gitignore index 24476c5d..08535692 100644 --- a/packages/wyatt_ui_kit/example/.gitignore +++ b/packages/wyatt_ui_kit/example/.gitignore @@ -32,6 +32,9 @@ migrate_working_dir/ .pub/ /build/ +# Firebase +.firebase/ + # Symbolication related app.*.symbols diff --git a/packages/wyatt_ui_kit/example/firebase.json b/packages/wyatt_ui_kit/example/firebase.json new file mode 100644 index 00000000..66037326 --- /dev/null +++ b/packages/wyatt_ui_kit/example/firebase.json @@ -0,0 +1,16 @@ +{ + "hosting": { + "public": "build/web", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + } +}