All Questions
9,135 questions
1
vote
1
answer
37
views
Fetch data from FireBase remoteConfig into a SSR NextJs Component
How can I fetch data from remoteConfig into an SSR NextJs component?
On my site, I use NextJs, and I want it to be static but also use dynamic routes. For this, the dynamic route is wrapped into an ...
0
votes
0
answers
24
views
WebRTC ICE candidates listener not firing
I'm trying to implement a basic video calling feature using WebRTC in my React + Firebase app.
I've encountered an issue which is that the ICE candidates listener is not firing although the offer and ...
1
vote
0
answers
24
views
Firebase Foreground Notification Not Working in Next JS
I've setup a firebase notification for my NextJS application, the following is the service worker code:
importScripts('https://www.gstatic.com/firebasejs/7.9.1/firebase-app.js');
importScripts('https:/...
-2
votes
0
answers
22
views
firebase rewriter to serve different html
I have a NX / React project that is deployed to firebase using firebase hosting.
I recently wanted to implement a maintenance page and I did the following :
having default app antry point and index....
0
votes
0
answers
40
views
FCM Notification Tap Not Triggering onNotificationOpenedApp Events in React Native (Except When Sent via FCM Console)
FCM Notification Tap Not Triggering Events in React Native (Except When Sent via FCM Console)
I've been struggling with this issue for the past week and couldn't find a fix.
Removed 'react-native-...
0
votes
0
answers
41
views
Can you download large files to mobile from Firebase Storage?
I've built a React app using Firebase where a list of files is presented to the user to download from Firebase Storage.
This all works fine on a desktop, and it works fine on mobile if the file is ...
0
votes
0
answers
29
views
Can I request Firebase MFA code verification in my React app without asking for the password?
I'm using Firebase for authentication in my React app, and I need to implement MFA (multi-factor authentication) code verification for the user. However, I don't want to ask for the user's password ...
1
vote
0
answers
41
views
Next.js fails to upload image to firebase
I am trying to upload images to firebase firestorage from our Next.js app. We already have our firebase firestorage credentials set up in our environment variables, and I believe we have initiated ...
1
vote
0
answers
45
views
Error requesting notification permission: AbortError: Failed to execute 'subscribe' on 'PushManager': Subscription failed - no active Service Worker
I'm trying to implement Firebase Cloud Messaging (FCM) in my React TypeScript application. Despite having the service worker registered and permissions granted, I keep getting this error when trying ...
0
votes
0
answers
64
views
How to configure Expo to resolve firebase/auth React Native bundle?
I am trying to set up a React Native app using Expo and Firebase auth.
I am trying to persist the auth across app close / opens using getReactNativePersistence but getReactNativePersistence isn't ...
0
votes
0
answers
27
views
Am I using Firebase's signInWithRedirect incorrectly in React?
Im having issues with the signInWithRedirect() method on my project, I made this 2-3 weeks ago and it was working fine, but now it does not, the user is not authenticated and the user variable returns ...
0
votes
0
answers
35
views
Image can't upload to Firebase
I'm trying to make a Portfolio using React.Js + Firebase, my goal is to add text and images from my Admin Panel to Portfolio. Since I'm working with a partner, my role is to make the Admin Panel but ...
0
votes
1
answer
34
views
How do I resolve TypeError: _app.default.auth is not a function error
I need help resolving error when running unit tests on a hook being used to retrieve user data.
TypeError: _app.default.auth is not a function
10 | setUserId(storedUserId);
11 | } else ...
0
votes
0
answers
68
views
Vercel keeps saying that it is "Unable to detect a Project Id in the current environment" even when I already put the Project ID in the env
So I have a website written using Astro that collects stamps. It has an API written in React that will read from the Firebase DB. When I ran it locally, it works just fine. But when I hosted it to ...
0
votes
0
answers
77
views
How to build a firebase auth RecaptchaVerifier React Component?
I am using firebase auth and I wanted to add SMS MFA Verfication. I had struggled a lot integrating the required RecaptchaVerifier with my React Components. So I ended up trying to build a ...