Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): Make copyable example useful by default #7928

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/framework/angular/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,25 @@ title: Devtools
The devtools are a separate package that you need to install:

```bash
$ npm i @tanstack/angular-query-devtools-experimental
npm i @tanstack/angular-query-devtools-experimental
```

or

```bash
$ pnpm add @tanstack/angular-query-devtools-experimental
pnpm add @tanstack/angular-query-devtools-experimental
```

or

```bash
$ yarn add @tanstack/angular-query-devtools-experimental
yarn add @tanstack/angular-query-devtools-experimental
```

or

```bash
$ bun add @tanstack/angular-query-devtools-experimental
bun add @tanstack/angular-query-devtools-experimental
```

You can import the devtools like this:
Expand Down
8 changes: 4 additions & 4 deletions docs/framework/react/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@ When you begin your React Query journey, you'll want these devtools by your side
The devtools are a separate package that you need to install:

```bash
$ npm i @tanstack/react-query-devtools
npm i @tanstack/react-query-devtools
```

or

```bash
$ pnpm add @tanstack/react-query-devtools
pnpm add @tanstack/react-query-devtools
```

or

```bash
$ yarn add @tanstack/react-query-devtools
yarn add @tanstack/react-query-devtools
```

or

```bash
$ bun add @tanstack/react-query-devtools
bun add @tanstack/react-query-devtools
```

For Next 13+ App Dir you must install it as a dev dependency for it to work.
Expand Down
8 changes: 4 additions & 4 deletions docs/framework/solid/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,25 @@ When you begin your Solid Query journey, you'll want these devtools by your side
The devtools are a separate package that you need to install:

```bash
$ npm i @tanstack/solid-query-devtools
npm i @tanstack/solid-query-devtools
```

or

```bash
$ pnpm add @tanstack/solid-query-devtools
pnpm add @tanstack/solid-query-devtools
```

or

```bash
$ yarn add @tanstack/solid-query-devtools
yarn add @tanstack/solid-query-devtools
```

or

```bash
$ bun add @tanstack/solid-query-devtools
bun add @tanstack/solid-query-devtools
```

You can import the devtools like this:
Expand Down
8 changes: 4 additions & 4 deletions docs/framework/vue/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ Component-based devtools use a framework-agnostic implementation and are always
The devtools component is a separate package that you need to install:

```bash
$ npm i @tanstack/vue-query-devtools
npm i @tanstack/vue-query-devtools
```

or

```bash
$ pnpm add @tanstack/vue-query-devtools
pnpm add @tanstack/vue-query-devtools
```

or

```bash
$ yarn add @tanstack/vue-query-devtools
yarn add @tanstack/vue-query-devtools
```

or

```bash
$ bun add @tanstack/vue-query-devtools
bun add @tanstack/vue-query-devtools
```

By default, Vue Query Devtools are only included in bundles when `process.env.NODE_ENV === 'development'`, so you don't need to worry about excluding them during a production build.
Expand Down
Loading