@@ -4,37 +4,47 @@ export default defineConfig({
4
4
base : "/build-your-own-tanstack-query/" ,
5
5
title : "Build your own TanStack Query" ,
6
6
description : "Build your own TanStack Query" ,
7
- head : [ [ "link" , { rel : "icon" , href : "/build-your-own-tanstack-query/favicon .png" } ] ] ,
7
+ head : [ [ "link" , { rel : "icon" , href : "/build-your-own-tanstack-query/tanstack-query-logo .png" } ] ] ,
8
8
locales : {
9
9
root : { label : "한국어" }
10
10
} ,
11
+
11
12
themeConfig : {
12
13
siteTitle : "Home" ,
13
14
search : {
14
15
provider : "local"
15
16
} ,
16
- nav : [ { text : "학습하기" , link : "/intro" } ] ,
17
+ outline : {
18
+ level : "deep"
19
+ } ,
20
+ nav : [ { text : "학습하기" , link : "/overview" } ] ,
17
21
sidebar : [
18
22
{
19
- text : "가이드 " ,
20
- items : [ { text : "소개 " , link : "/intro " } ]
23
+ text : "소개 " ,
24
+ items : [ { text : "개요 " , link : "/overview " } ]
21
25
} ,
22
26
{
23
- text : "설명 " ,
27
+ text : "가이드 " ,
24
28
items : [
25
- { text : "구조" , link : "/architecture" } ,
26
29
{
27
- text : "주요 기능 " ,
30
+ text : "코어 영역 " ,
28
31
items : [
29
- { text : "코어 영역" , link : "/core" } ,
30
- { text : "React에 적용하기" , link : "/core-with-react" }
32
+ { text : "소개" , link : "/core/index.md" } ,
33
+ { text : "QueryClient" , link : "/core/query-client" } ,
34
+ { text : "QueryCache" , link : "/core/query-cache" } ,
35
+ { text : "Query" , link : "/core/query" } ,
36
+ { text : "QueryObserver" , link : "/core/query-observer" }
31
37
]
32
38
} ,
33
39
{
34
- text : "추가 기능" ,
40
+ text : "React 영역" ,
41
+ items : [ { text : "소개" , link : "/react/index.md" } ]
42
+ } ,
43
+ {
44
+ text : "더 알아보기" ,
35
45
items : [
36
- { text : "Window Focus Refetching" , link : "/window-focus-refetching" } ,
37
- { text : "Devtools" , link : "/devtools" }
46
+ { text : "Window Focus Refetching" , link : "/learn-more/ window-focus-refetching" } ,
47
+ { text : "Devtools" , link : "/learn-more/ devtools" }
38
48
]
39
49
}
40
50
]
0 commit comments