133 lines
2.8 KiB
JavaScript
133 lines
2.8 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
module.exports = {
|
|
tutorialSidebar: [
|
|
{
|
|
type: "doc",
|
|
id: "homepage",
|
|
label: "Overview",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "quickstart/quick-start",
|
|
label: "Quickstart",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Tutorials",
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/set-up-your-development-environment",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/creating-your-medusa-server",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "tutorial/adding-custom-functionality",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "How to",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "how-to/notification-api",
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Gatsby + Contentful + Medusa",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "how-to/headless-ecommerce-store-with-gatsby-contentful-medusa",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/making-your-store-more-powerful-with-contentful",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/setting-up-a-nextjs-storefront-for-your-medusa-project",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/create-medusa-app",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/uploading-images-to-spaces",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/uploading-images-to-s3",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "guides/fulfillment-api",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "guides/plugins",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "guides/checkouts",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "guides/carts-in-medusa",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Deploy",
|
|
items: [
|
|
{
|
|
type: "doc",
|
|
id: "how-to/deploying-on-heroku",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/deploying-on-qovery",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/deploying-on-digital-ocean",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/deploying-admin-on-netlify",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "how-to/deploying-gatsby-on-netlify",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|