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: { footer: {
style: "dark", style: "dark",
links: [ links: [
{
title: "Blog",
items: [
{
label: "Overview",
to: "/docs/Language",
},
],
},
{ {
title: "More", title: "More",
items: [ items: [

View File

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