aboutsummaryrefslogtreecommitdiff
path: root/sidebars.js
diff options
context:
space:
mode:
authorYasutake Yohei <yohei@yasutakeyohei.com>2023-12-30 22:24:55 +0900
committerYasutake Yohei <yohei@yasutakeyohei.com>2023-12-30 22:24:55 +0900
commit3fc0ee1b72c12922254533b78695ffa17e7232be (patch)
treef92d871e6720670f3fa98d9e28b9396a894d9135 /sidebars.js
parente18d8441d03746158a72029381d8fbdee39184b3 (diff)
initial commit
Diffstat (limited to 'sidebars.js')
-rw-r--r--sidebars.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/sidebars.js b/sidebars.js
new file mode 100644
index 00000000..393296ac
--- /dev/null
+++ b/sidebars.js
@@ -0,0 +1,40 @@
+/**
+ * Creating a sidebar enables you to:
+ - create an ordered group of docs
+ - render a sidebar for each doc of that group
+ - provide next/previous navigation
+
+ The sidebars can be generated from the filesystem, or explicitly defined here.
+
+ Create as many sidebars as you want.
+ */
+
+// @ts-check
+
+/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
+const sidebars = {
+ // By default, Docusaurus generates a sidebar from the docs folder structure
+ //tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
+
+ // But you can create a sidebar manually
+ ippanSidebar: [
+ {
+ type: 'autogenerated',
+ dirName: 'ippan-situmon', // '.' means the current docs folder
+ },
+ ],
+ giantouSidebar: [
+ {
+ type: 'autogenerated',
+ dirName: 'gian-tou', // '.' means the current docs folder
+ },
+ ],
+ dyslexiaSidebar: [
+ {
+ type: 'autogenerated',
+ dirName: 'hattatu', // '.' means the current docs folder
+ },
+ ],
+};
+
+export default sidebars;