gpt4 book ai didi

javascript - auth' 未从 React 应用程序中的 'firebase' 导出

转载 作者:行者123 更新时间:2023-12-05 09:07:34 26 4
gpt4 key购买 nike

这是我第一次在 React 中使用 firebase,我在 userProvider.js 文件中收到错误

auth' is not exported from 'firebase'

在我的 firebase.js 中我这样做

 import "firebase/auth";
export const auth = firebase.auth();

在我的 userProvider.js 文件中,我将其导入为

import {auth} from 'firebase';

我是这方面的初学者。我不知道我是否在这里遗漏了一些简单的东西

最佳答案

您没有正确导入 Firebase SDK。请务必阅读 documentation on using Firebase with module bundlers .从 v8.0.0 开始,您必须像这样导入 Firebase SDK:

import firebase from "firebase/app"
import "firebase/auth"

const auth = firebase.auth()

不要直接从“firebase”导入。

关于javascript - auth' 未从 React 应用程序中的 'firebase' 导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64728304/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com