fix-links

This commit is contained in:
Ukendio 2024-07-28 03:14:31 +02:00
parent d46df8c0a0
commit 51c8ae61c5

View file

@ -2,56 +2,56 @@ import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config // https://vitepress.dev/reference/site-config
export default defineConfig({ export default defineConfig({
title: "Jecs", title: "Jecs",
base: "/jecs/", base: "/jecs/",
description: "A VitePress Site", description: "A VitePress Site",
themeConfig: { themeConfig: {
// https://vitepress.dev/reference/default-theme-config // https://vitepress.dev/reference/default-theme-config
nav: [ nav: [
{ text: 'Home', link: '/' }, { text: 'Home', link: '/' },
{ text: 'Examples', link: '/markdown-examples' } { text: 'Examples', link: '/markdown-examples' }
], ],
sidebar: [ sidebar: [
{ {
text: 'Overview', text: 'Overview',
items: [ items: [
{ text: 'Getting Started', link: '/overview/get-started' }, { text: 'Getting Started', link: 'learn/overview/get-started' },
{ text: 'First Jecs Project', link: '/overview/first-jecs-project' } { text: 'First Jecs Project', link: 'learn/overview/first-jecs-project' }
] ]
}, },
{ {
text: 'Concepts', text: 'Concepts',
items: [ items: [
{ text: 'Entities', link: '/concepts/entities' }, { text: 'Entities', link: 'learn/concepts/entities' },
{ text: 'Static Components', link: '/concepts/static-components' }, { text: 'Static Components', link: 'learn/concepts/static-components' },
{ text: 'Queries', link: '/concepts/queries' }, { text: 'Queries', link: 'learn/concepts/queries' },
] ]
}, },
{ {
text: 'References', text: 'References',
items: [ items: [
{ text: 'API Reference', link: '/api' }, { text: 'API Reference', link: '/api' },
] ]
}, },
{ {
text: "FAQ", text: "FAQ",
items: [ items: [
{ text: 'How can I contribute?', link: '/faq/contributing' } { text: 'How can I contribute?', link: '/faq/contributing' }
] ]
}, },
{ {
text: 'Contributing', text: 'Contributing',
items: [ items: [
{ text: 'Contribution Guidelines', link: '/contributing/guidelines'}, { text: 'Contribution Guidelines', link: '/contributing/guidelines' },
{ text: 'Submitting Issues', link: '/contributing/issues'}, { text: 'Submitting Issues', link: '/contributing/issues' },
{ text: 'Submitting Pull Requests', link: '/contributing/pull-requests'}, { text: 'Submitting Pull Requests', link: '/contributing/pull-requests' },
] ]
} }
], ],
socialLinks: [ socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' } { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
] ]
} }
}) })