import { defineConfig } from 'vitepress' // https://vitepress.dev/reference/site-config export default defineConfig({ title: "PicQuery", description: "A PicQuery documentation site", base: '/PicQuery/', head: [ ['link', { rel: 'icon', href: '/PicQuery/logo.webp' }], ], themeConfig: { logo: 'logo.png', footer: { message: 'Released under the MIT License, visit our Privacy Policy.', copyright: 'Copyright © 2023-present Grey Liu.', }, // https://vitepress.dev/reference/default-theme-config nav: [ // { text: 'Privacy Policy', link: '/privacy-policy' }, // { text: 'Examples', link: '/markdown-examples' } ], // sidebar: [ // { // text: 'Examples', // items: [ // { text: 'Markdown Examples', link: '/markdown-examples' }, // { text: 'Runtime API Examples', link: '/api-examples' } // ] // } // ], socialLinks: [ { icon: 'github', link: 'https://github.com/greyovo/PicQuery' } ] } })