diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 7a6d30a..eddf6c8 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -1,28 +1,29 @@ -import { defineConfig } from 'vitepress' +import { defineConfig } from "vitepress"; // https://vitepress.dev/reference/site-config export default defineConfig({ title: "My Awesome Project", description: "A VitePress Site", + base: "/iter-x/", themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ - { text: 'Home', link: '/' }, - { text: 'Examples', link: '/markdown-examples' } + { text: "Home", link: "/" }, + { text: "Examples", link: "/markdown-examples" }, ], sidebar: [ { - text: 'Examples', + text: "Examples", items: [ - { text: 'Markdown Examples', link: '/markdown-examples' }, - { text: 'Runtime API Examples', link: '/api-examples' } - ] - } + { text: "Markdown Examples", link: "/markdown-examples" }, + { text: "Runtime API Examples", link: "/api-examples" }, + ], + }, ], socialLinks: [ - { icon: 'github', link: 'https://github.com/vuejs/vitepress' } - ] - } -}) + { icon: "github", link: "https://github.com/vuejs/vitepress" }, + ], + }, +});