- Replace custom JWT auth with Firebase Auth SDK - Add Firebase web app configuration - Implement user registration and login with Firebase - Update backend to use Firebase Admin SDK for token verification - Remove custom auth routes and controllers - Add Firebase Cloud Functions deployment configuration - Update frontend to use Firebase Auth state management - Add registration mode toggle to login form - Configure CORS and deployment for Firebase hosting 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
234 B
JSON
17 lines
234 B
JSON
{
|
|
"hosting": {
|
|
"public": "dist",
|
|
"ignore": [
|
|
"firebase.json",
|
|
"**/.*",
|
|
"**/node_modules/**"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "**",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|
|
}
|