diff --git a/.firebaserc b/.firebaserc new file mode 100644 index 0000000..859283f --- /dev/null +++ b/.firebaserc @@ -0,0 +1,5 @@ +{ + "projects": { + "default": "block-seasons" + } +} diff --git a/.gitignore b/.gitignore index 7f97c5a..d0e142f 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,7 @@ lib/l10n/gen/ .superpowers/ CLAUDE.md *.pid + +# Firebase Hosting (CLI deploy cache + generated content payload) +.firebase/ +/deploy/content/ diff --git a/deploy/404.html b/deploy/404.html new file mode 100644 index 0000000..829eda8 --- /dev/null +++ b/deploy/404.html @@ -0,0 +1,33 @@ + + + + + + Page Not Found + + + + +
+

404

+

Page Not Found

+

The specified file was not found on this website. Please check the URL for mistakes and try again.

+

Why am I seeing this?

+

This page was generated by the Firebase Command-Line Interface. To modify it, edit the 404.html file in your project's configured public directory.

+
+ + diff --git a/deploy/index.html b/deploy/index.html new file mode 100644 index 0000000..95a70d8 --- /dev/null +++ b/deploy/index.html @@ -0,0 +1,89 @@ + + + + + + Welcome to Firebase Hosting + + + + + + + + + + + + + + + + + + + +
+

Welcome

+

Firebase Hosting Setup Complete

+

You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary!

+ Open Hosting Documentation +
+

Firebase SDK Loading…

+ + + + diff --git a/firebase.json b/firebase.json new file mode 100644 index 0000000..74ab3aa --- /dev/null +++ b/firebase.json @@ -0,0 +1,10 @@ +{ + "hosting": { + "public": "deploy", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ] + } +}