We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30139a6 commit 2ae2a7cCopy full SHA for 2ae2a7c
package-react/README.md
@@ -45,6 +45,13 @@ React Query Rewind introduces a powerful DevTool extension designed to work in c
45
import ReactQueryRewind from "react-query-rewind";
46
```
47
48
+ _Note: Some older versions of NextJS default to the commonJS version of the package, causing apps to error_
49
+ _If you encounter this error, import the component with:_
50
+
51
+ ```javascript
52
+ import ReactQueryRewind from "../../node_modules/react-query-rewind/dist/esm/index.js";
53
+ ```
54
55
3. Place ReactQueryRewind next to the root of your application inside the QueryClientProvider component.
56
57
```javascript
0 commit comments