- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的 NextJS 应用程序配置 redux 存储,我通常使用 Reactotron 库来检查存储。但是,NextJS 是服务器端渲染,如果我导入应用程序文件中的配置,它会给出错误窗口未定义
这是我的配置文件: https://github.com/LauraBeatris/amazon-next/blob/develop/src/config/ReactotronConfig.js
还有我的应用程序文件: https://github.com/LauraBeatris/amazon-next/blob/develop/src/pages/_app.js
我想知道是否有办法将 Reactotron 与 NextJS 结合使用
最佳答案
在 NextJS 中,您只能在客户端动态导入模块。您应该像 this 一样导入它:
import dynamic from "next/dynamic"
const DynamicComponentWithNoSSR = dynamic(
() => import '~/config/ReactotronConfig',
{ ssr: false }
)
但我不确定 Reactotron 是否会按照您期望的方式工作,因为我不了解该库。
关于javascript - 由于 SSR,Reactotron 无法与 NextJS 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60197905/
我使用 Reactotron 版本 1 在我的 React Native 应用程序中记录我的网络响应,一切正常,最近我将我的 Reactotron 版本更改为版本 2.1.2,之后我开始在 React
我已经用几乎默认的配置设置了 Reactotron: import Reactotron from 'reactotron-react-native'; import { reactotronRedu
我正在为我的 NextJS 应用程序配置 redux 存储,我通常使用 Reactotron 库来检查存储。但是,NextJS 是服务器端渲染,如果我导入应用程序文件中的配置,它会给出错误窗口未定义
我是一名优秀的程序员,十分优秀!