From 51c8ae61c581a680648d51895b2099058962c9e0 Mon Sep 17 00:00:00 2001 From: Ukendio Date: Sun, 28 Jul 2024 03:14:31 +0200 Subject: [PATCH] fix-links --- docs/.vitepress/config.mts | 100 ++++++++++++++++++------------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index a184354..2660dde 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -2,56 +2,56 @@ import { defineConfig } from 'vitepress' // https://vitepress.dev/reference/site-config export default defineConfig({ - title: "Jecs", - base: "/jecs/", - description: "A VitePress Site", - themeConfig: { - // https://vitepress.dev/reference/default-theme-config - nav: [ - { text: 'Home', link: '/' }, - { text: 'Examples', link: '/markdown-examples' } - ], + title: "Jecs", + base: "/jecs/", + description: "A VitePress Site", + themeConfig: { + // https://vitepress.dev/reference/default-theme-config + nav: [ + { text: 'Home', link: '/' }, + { text: 'Examples', link: '/markdown-examples' } + ], - sidebar: [ - { - text: 'Overview', - items: [ - { text: 'Getting Started', link: '/overview/get-started' }, - { text: 'First Jecs Project', link: '/overview/first-jecs-project' } - ] - }, - { - text: 'Concepts', - items: [ - { text: 'Entities', link: '/concepts/entities' }, - { text: 'Static Components', link: '/concepts/static-components' }, - { text: 'Queries', link: '/concepts/queries' }, - ] - }, - { - text: 'References', - items: [ - { text: 'API Reference', link: '/api' }, - ] - }, - { - text: "FAQ", - items: [ - { text: 'How can I contribute?', link: '/faq/contributing' } - ] - }, - { - text: 'Contributing', - items: [ - { text: 'Contribution Guidelines', link: '/contributing/guidelines'}, - { text: 'Submitting Issues', link: '/contributing/issues'}, - { text: 'Submitting Pull Requests', link: '/contributing/pull-requests'}, - ] - } - ], + sidebar: [ + { + text: 'Overview', + items: [ + { text: 'Getting Started', link: 'learn/overview/get-started' }, + { text: 'First Jecs Project', link: 'learn/overview/first-jecs-project' } + ] + }, + { + text: 'Concepts', + items: [ + { text: 'Entities', link: 'learn/concepts/entities' }, + { text: 'Static Components', link: 'learn/concepts/static-components' }, + { text: 'Queries', link: 'learn/concepts/queries' }, + ] + }, + { + text: 'References', + items: [ + { text: 'API Reference', link: '/api' }, + ] + }, + { + text: "FAQ", + items: [ + { text: 'How can I contribute?', link: '/faq/contributing' } + ] + }, + { + text: 'Contributing', + items: [ + { text: 'Contribution Guidelines', link: '/contributing/guidelines' }, + { text: 'Submitting Issues', link: '/contributing/issues' }, + { text: 'Submitting Pull Requests', link: '/contributing/pull-requests' }, + ] + } + ], - socialLinks: [ - { icon: 'github', link: 'https://github.com/vuejs/vitepress' } - ] - } + socialLinks: [ + { icon: 'github', link: 'https://github.com/vuejs/vitepress' } + ] + } })