Fix dead footer link causing build errors

This commit is contained in:
Sam Nolan 2022-04-11 10:37:08 +10:00
parent da9ee2aaee
commit 3db9f066fe
2 changed files with 23 additions and 32 deletions

View File

@ -95,15 +95,6 @@ const config = {
footer: {
style: "dark",
links: [
{
title: "Blog",
items: [
{
label: "Overview",
to: "/docs/Language",
},
],
},
{
title: "More",
items: [

View File

@ -16,36 +16,36 @@ const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [
{
type: 'doc',
id: 'Introduction',
label: 'Introduction'
type: "doc",
id: "Introduction",
label: "Introduction",
},
{
type: 'doc',
id: 'Playground',
label: 'Playground'
type: "doc",
id: "Playground",
label: "Playground",
},
{
type: 'category',
label: 'Features',
type: "category",
label: "Features",
items: [
{
type: 'autogenerated',
dirName: 'Features'
}
]
},
{
type: 'category',
label: 'Discussions',
items: [
{
type: 'autogenerated',
dirName: 'Discussions',
type: "autogenerated",
dirName: "Features",
},
]
}
]
],
},
{
type: "category",
label: "Discussions",
items: [
{
type: "autogenerated",
dirName: "Discussions",
},
],
},
],
// But you can create a sidebar manually
/*