【发布时间】:2021-06-14 01:40:50
【问题描述】:
我正在尝试使用 vite 构建我的 react 项目,但它抛出了以下错误。
node_modules/react-firebase-hooks/auth/dist/auth/types.d.ts:2:50 - error TS2304: Cannot find name 'AuthActionHook'.
2 export declare type EmailAndPasswordActionHook = AuthActionHook<firebase.auth.UserCredential, firebase.FirebaseError>;
开发版本运行良好,所以我不确定构建失败的原因。
vite.config.js
import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react-refresh'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [reactRefresh()]
})
【问题讨论】:
标签: reactjs firebase build vite