Skip to content

Commit e0cc67b

Browse files
committed
chore: update config
1 parent db7f3d9 commit e0cc67b

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

docs/config.json

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,37 @@
2626
"to": "installation"
2727
}
2828
],
29+
2930
"frameworks": [
3031
{
3132
"label": "react",
3233
"children": [
3334
{
34-
"label": "React Adapter",
35+
"label": "Basic setup",
3536
"to": "framework/react/basic-setup"
37+
},
38+
{
39+
"label": "React adapter",
40+
"to": "framework/react/adapter"
3641
}
3742
]
3843
},
3944
{
4045
"label": "solid",
4146
"children": [
4247
{
43-
"label": "Solid Adapter",
48+
"label": "Basic setup",
4449
"to": "framework/solid/basic-setup"
50+
},
51+
{
52+
"label": "Solid Adapter",
53+
"to": "framework/solid/adapter"
4554
}
4655
]
4756
}
4857
]
4958
},
59+
5060
{
5161
"label": "Guides",
5262
"children": [],
@@ -55,7 +65,7 @@
5565
"label": "react",
5666
"children": [
5767
{
58-
"label": "Implementing a custom client",
68+
"label": "Custom plugins",
5969
"to": "framework/react/guides/custom-plugins"
6070
}
6171
]
@@ -66,6 +76,7 @@
6676
}
6777
]
6878
},
79+
6980
{
7081
"label": "API Reference",
7182
"children": [
@@ -95,6 +106,7 @@
95106
}
96107
]
97108
},
109+
98110
{
99111
"label": "Examples",
100112
"children": [],
@@ -105,6 +117,14 @@
105117
{
106118
"label": "Basic",
107119
"to": "framework/react/examples/basic"
120+
},
121+
{
122+
"label": "TanStack Start",
123+
"to": "framework/react/examples/start"
124+
},
125+
{
126+
"label": "Custom devtools",
127+
"to": "framework/react/examples/custom-devtools"
108128
}
109129
]
110130
},
@@ -120,4 +140,4 @@
120140
]
121141
}
122142
]
123-
}
143+
}
File renamed without changes.

docs/framework/react/basic-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ createRoot(document.getElementById('root')!).render(
7373
)
7474
```
7575

76-
Finally add any additional configuration you desire to the `TanstackDevtools` component, more information can be found under the [TanStack Devtools Configuration](https://tanstack.com/devtools/) section.
76+
Finally add any additional configuration you desire to the `TanstackDevtools` component, more information can be found under the [TanStack Devtools Configuration](../../configuration.md) section.
7777

78-
A complete working example can be found in our [examples section](https://tanstack.com/devtools/latest/docs/framework/react/examples).
78+
A complete working example can be found in our [basic example](https://tanstack.com/devtools/latest/docs/framework/react/examples).

docs/framework/react/guides/custom-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function DevtoolPanel() {
134134

135135
## Application Integration
136136

137-
This step follows what's shown in [../basic-setup] for a more documented guide go check it out. As well as the complete [custom-devtools example](https://tanstack.com/devtools/latest/docs/framework/react/examples/custom-devtools) in our examples section.
137+
This step follows what's shown in [basic-setup](../basic-setup.md) for a more documented guide go check it out. As well as the complete [custom-devtools example](https://tanstack.com/devtools/latest/docs/framework/react/examples/custom-devtools) in our examples section.
138138

139139
Main.tsx
140140
```tsx
File renamed without changes.

0 commit comments

Comments
 (0)