道德提供者在Next.js 中不工作
import { MoralisProvider } from 'react-moralis'
function MyApp({ Component, pageProps })
{ return (
<MoralisProvider
serverUrl={process.env.NEXT_PUBLIC_MORALIS_SERVER}
appId={process.env.NEXT_PUBLIC_MORALIS_APP_ID}
>
<Component {...pageProps} />
</MoralisProvider>
) }
export default MyApp
上面写着打字错误为什么它不起作用?
Unhandled Runtime Error
TypeError: Right-hand side of 'instanceof' is not callable
尝试将您的morals SDK版本降级为moralis@1.8.0react-moralis@1.4.0
参考:https://forum.moralis.io/t/solved-typeerror-right-hand-side-of-instanceof-is-not-callable/18621/10
该错误来自web3uikit包,您可以先将其删除,然后重试。。
当我移除时,它起了作用。。
如果仍然存在错误,则可以降级为moralis@1.8.0react-moralis@1.4.0为我的next.js react项目修复了它