-
[steps to reproduce]
The console error message is completely bogus, as the file are in the place it says it could not find them. I'm ready to add anything that could help pinpointing the problem, as to the top of my knowledge there is not much I can do. Sorry if the question is missing any information, but I'm just overflown by this problem. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
We simply do not support react-native-web and no one has proposed themselves to step up to contribute the PRs such that we do support react-native-web (and most important!) to maintain it going forward. What I do (using reactxp, which also supports web, similar to react-native-web) is that when I do the web build I cut react-native-firebase out completely and I pull in firebase-js-sdk directly from the google repos. No attempt to build react-native-firebase is made in my web build, because it doesn't work With no intention at being discouraging but to set my personal boundaries clearly - I will make no attempt to support react-native-web here though I'd like to see it of course. We need someone from the community to step up and commit to maintaining it for it to happen |
Beta Was this translation helpful? Give feedback.
-
@mikehardy working with shim files and your template,
how do you add
to achieve
?? Because Expo SDK 48 doesn't come with Async Storage any more, authentication on React Native doesn't persist out of the box. I had to add these additional imports before I tackled the shim files scenario, and it worked. Right now, I can't get my head around it when using shims. Web persistence already works out of the box... |
Beta Was this translation helpful? Give feedback.
We simply do not support react-native-web and no one has proposed themselves to step up to contribute the PRs such that we do support react-native-web (and most important!) to maintain it going forward.
What I do (using reactxp, which also supports web, similar to react-native-web) is that when I do the web build I cut react-native-firebase out completely and I pull in firebase-js-sdk directly from the google repos. No attempt to build react-native-firebase is made in my web build, because it doesn't work
With no intention at being discouraging but to set my personal boundaries clearly - I will make no attempt to support react-native-web here though I'd like to see it of course. We need s…