Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1f20b0f

Browse files
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

Lines changed: 10 additions & 0 deletions
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

Lines changed: 10 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /