chore: add react-query dev tools and update lock file
This commit is contained in:
parent
a4a6e900f0
commit
53b1e0f61c
4 changed files with 998 additions and 787 deletions
|
@ -35,6 +35,7 @@
|
||||||
"@tabler/core": "1.0.0-beta17",
|
"@tabler/core": "1.0.0-beta17",
|
||||||
"@tabler/icons-react": "^2.11.0",
|
"@tabler/icons-react": "^2.11.0",
|
||||||
"@tanstack/react-query": "^4.27.0",
|
"@tanstack/react-query": "^4.27.0",
|
||||||
|
"@tanstack/react-query-devtools": "^4.27.0",
|
||||||
"@trpc/client": "^10.16.0",
|
"@trpc/client": "^10.16.0",
|
||||||
"@trpc/next": "^10.16.0",
|
"@trpc/next": "^10.16.0",
|
||||||
"@trpc/react-query": "^10.16.0",
|
"@trpc/react-query": "^10.16.0",
|
||||||
|
|
1780
pnpm-lock.yaml
generated
1780
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -2,7 +2,7 @@
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock Service Worker (1.0.1).
|
* Mock Service Worker (1.1.0).
|
||||||
* @see https://github.com/mswjs/msw
|
* @see https://github.com/mswjs/msw
|
||||||
* - Please do NOT modify this file.
|
* - Please do NOT modify this file.
|
||||||
* - Please do NOT serve this file on production.
|
* - Please do NOT serve this file on production.
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import React, { useEffect } from 'react';
|
import React, { useEffect } from 'react';
|
||||||
|
import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
|
||||||
import type { AppProps } from 'next/app';
|
import type { AppProps } from 'next/app';
|
||||||
import Head from 'next/head';
|
import Head from 'next/head';
|
||||||
import '../client/styles/global.css';
|
import '../client/styles/global.css';
|
||||||
|
@ -46,6 +47,7 @@ function MyApp({ Component, pageProps }: AppProps) {
|
||||||
<Component {...pageProps} />
|
<Component {...pageProps} />
|
||||||
</StatusProvider>
|
</StatusProvider>
|
||||||
</ToastProvider>
|
</ToastProvider>
|
||||||
|
<ReactQueryDevtools />
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue