forked from blitz-js/blitzjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
80 lines (79 loc) · 1.93 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
someSidebar: {
Introduction: ["getting-started", "tutorial", "what-is-nextjs", "why-blitz"],
Community: [
"how-the-community-operates",
"manifesto",
"community-history",
"contributing",
"maintainers",
"code-of-conduct",
],
Basics: [
"file-structure",
"app-component",
"css",
"static-files",
"environment-variables",
"error-handling",
],
Auth: ["auth", "session-management", "authorization", "passportjs"],
Pages: [
"pages",
"error-pages",
"head-component",
"document-component",
"preview-mode",
"get-static-props",
"get-static-paths",
"get-server-side-props",
],
Routing: [
"routing",
"routing-conventions",
"link",
"route-params-query",
"router",
"api-routes",
],
Database: ["database-overview", "database-seeds", "fauna"],
Queries: [
"query-resolvers",
"query-usage",
"use-query",
"use-paginated-query",
"use-infinite-query",
],
Mutations: ["mutation-resolvers", "mutation-usage", "use-mutation"],
"Queries & Mutations": ["invoke", "resolver-utilities"],
"Deploying to Production": ["deploy-render", "deploy-vercel", "deploy-heroku"],
CLI: [
"cli-overview",
"cli-new",
"cli-start",
"cli-build",
"cli-db",
"cli-generate",
"cli-console",
"cli-install",
"cli-autocomplete",
],
Recipes: ["using-recipes", "writing-recipes"],
Templates: ["templates"],
Advanced: [
"blitz-config",
"webpack-config",
"postcss-config",
"code-splitting",
"middleware",
"rpc-specification",
"measuring-performance",
],
},
}