Firebase Not Configured
Your Firebase environment variables are not set correctly. The application cannot connect to Firebase services.
To fix this, please:
- Create a
.env.localfile in the root of your project. - Add your Firebase project configuration to the file:
NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain
NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_sender_id
NEXT_PUBLIC_FIREBASE_APP_ID=your_app_idAfter adding the environment variables, you must restart your development server for the changes to take effect.