Skip to content

Commit

Permalink
Fix Link
Browse files Browse the repository at this point in the history
  • Loading branch information
Disservin committed Sep 23, 2024
1 parent 74dedfe commit a78c8cd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { defineConfig } from "vitepress";
import { getSidebar } from 'vitepress-plugin-auto-sidebar'
import { getSidebar } from "vitepress-plugin-auto-sidebar";

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Stockfish",
description: "Stockfish documentation",
markdown: {
languageAlias: {
'cuda': 'c++'
}
cuda: "c++",
},
},
base: "/stockfish-docs/",
base: "/docs/",

ignoreDeadLinks: true,

Expand All @@ -29,10 +29,10 @@ export default defineConfig({
],

sidebar: getSidebar({
contentRoot: '/',
contentDirs: ['stockfish-wiki', 'fishtest-wiki', 'nnue-pytorch-wiki'],
contentRoot: "/",
contentDirs: ["stockfish-wiki", "fishtest-wiki", "nnue-pytorch-wiki"],
collapsible: true,
collapsed: false
collapsed: false,
}),

socialLinks: [
Expand Down

0 comments on commit a78c8cd

Please sign in to comment.