graphql-engine/docs/sidebars.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
1.5 KiB
JavaScript
Raw Normal View History

/**
* 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
docsSidebar: [
// {
// type: 'link',
// href: '/latest/graphql/cloud/index',
// label: 'Hasura Cloud',
// },
{
type: 'category',
label: 'Hasura GraphQL Engine',
// link: {
// type: 'doc',
// id: 'graphql/core/index',
// },
items: [
{ type: 'autogenerated', dirName: 'graphql/core' }
],
},
// { type: 'autogenerated', dirName: 'graphql/core' },
],
cloudDocsSidebar: [
// {
// type: 'link',
// href: '/latest/graphql/core/index',
// label: 'Hasura GraphQL Engine',
// },
{
type: 'category',
label: 'Hasura Cloud',
// link: {
// type: 'doc',
// id: 'graphql/cloud/index',
// },
items: [
{ type: 'autogenerated', dirName: 'graphql/cloud' }
],
},
// { type: 'autogenerated', dirName: 'graphql/cloud' }
],
// But you can create a sidebar manually
/*
tutorialSidebar: [
{
type: 'category',
label: 'Tutorial',
items: ['hello'],
},
],
*/
};
module.exports = sidebars;