Skip to content

Commit 1f20b0f

Browse files
authored
Merge pull request #85 from oslabs-beta/dev
Dev
2 parents 0bb08cb + c515859 commit 1f20b0f

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,16 @@ React Query Rewind introduces a powerful DevTool extension designed to work in c
6666
import ReactQueryRewind from "../../node_modules/react-query-rewind/dist/esm/index.js";
6767
```
6868

69+
_OR_
70+
71+
```javascript
72+
import dynamic from 'next/dynamic'
73+
const ReactQueryRewind = dynamic(
74+
() => import('react-query-rewind').then((mod) => mod.default),
75+
{ ssr: false }
76+
)
77+
```
78+
6979
3. Place ReactQueryRewind next to the root of your application inside the QueryClientProvider component.
7080

7181
```javascript

package-react/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,16 @@ React Query Rewind introduces a powerful DevTool extension designed to work in c
5151
```javascript
5252
import ReactQueryRewind from "../../node_modules/react-query-rewind/dist/esm/index.js";
5353
```
54+
55+
_OR_
56+
57+
```javascript
58+
import dynamic from 'next/dynamic'
59+
const ReactQueryRewind = dynamic(
60+
() => import('react-query-rewind').then((mod) => mod.default),
61+
{ ssr: false }
62+
)
63+
```
5464
5565
3. Place ReactQueryRewind next to the root of your application inside the QueryClientProvider component.
5666

package-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "git",
1919
"url": "git+https://github.com/oslabs-beta/react-query-rewind.git"
2020
},
21-
"version": "2.1.12",
21+
"version": "2.1.13",
2222
"description": "React Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
2323
"keywords": [
2424
"react",

package-svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "git",
1919
"url": "git+https://github.com/oslabs-beta/react-query-rewind.git"
2020
},
21-
"version": "1.1.9",
21+
"version": "1.1.10",
2222
"description": "Svelte Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
2323
"keywords": [
2424
"svelte",

package-vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-query-rewind/vue-query-rewind",
3-
"version": "1.1.10",
3+
"version": "1.1.11",
44
"description": "Vue Query Rewind is a library that helps developers debug applications that use React Query (ie TanStack Query) by letting them time travel through state changes directly in their chrome dev tools",
55
"type": "module",
66
"files": [

0 commit comments

Comments
 (0)