We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0531099 commit 1b06d1fCopy full SHA for 1b06d1f
astro.config.mjs
@@ -10,7 +10,7 @@ export default defineConfig({
10
compressHTML: true,
11
integrations: [
12
mdx({
13
- syntaxHighlight: 'shiki',
+ syntaxHighlight: "shiki",
14
shikiConfig: { theme: 'github-dark-dimmed' },
15
gfm: true,
16
}),
@@ -24,4 +24,7 @@ export default defineConfig({
24
prefetchAll: true,
25
defaultStrategy: 'viewport',
26
},
27
+ redirects: {
28
+ "/docs": "/docs/getting-started"
29
+ },
30
});
src/config/nav-menu.ts
@@ -17,9 +17,8 @@ export const navMenuConfig: NavMenuConfig = {
17
18
{
19
title: "Concepts",
20
- href: "/docs/database-basics",
+ href: "/docs/basics-of-database",
21
description: "Know what's going behind the scenes.",
22
- disabled: true,
23
],
0 commit comments