**已关闭。**此问题需要debugging details。它目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答这个问题。
上个月关门了。
Improve this question的
在配置Redux与Next.js我得到这个错误以下是我的package.json版本"@reduxjs/toolkit": "^1.9.5", "next": "13.4.7", "react": "18.2.0", "react-dom": "18.2.0", "react-redux": "^8.1.1", "redux": "^4.2.1"
尝试通过npm run dev
在本地启动next.js服务器。但UI显示err error TypeError: (0 , _useIsomorphicLayoutEffect.useIsomorphicLayoutEffect) is not a function
1条答案
按热度按时间lnvxswe21#
您可能试图使用只能在服务器组件中的客户端组件中使用的组件(
Provider
)或钩子。您可以在Next.js文档中阅读这方面的内容