2025-01-24 16:51:30 +00:00
|
|
|
import { defineConfig } from 'vitepress';
|
|
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
|
|
export default defineConfig({
|
|
|
|
title: 'Lilium',
|
|
|
|
description: 'Lilium docs',
|
|
|
|
themeConfig: {
|
|
|
|
// https://vitepress.dev/reference/default-theme-config
|
2025-01-24 17:00:02 +00:00
|
|
|
nav: [
|
|
|
|
{ text: 'Home', link: '/' },
|
|
|
|
{ text: 'Components', link: '/components/vnInput' },
|
|
|
|
{ text: 'Composables', link: '/composables/useArrayData' },
|
|
|
|
],
|
2025-01-24 16:51:30 +00:00
|
|
|
|
|
|
|
sidebar: [
|
|
|
|
{
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
text: 'Components',
|
|
|
|
collapsible: true,
|
|
|
|
collapsed: true,
|
|
|
|
items: [{ text: 'VnInput', link: '/components/vnInput' }],
|
|
|
|
},
|
2025-01-24 17:00:02 +00:00
|
|
|
{
|
|
|
|
text: 'Composables',
|
|
|
|
collapsible: true,
|
|
|
|
collapsed: true,
|
|
|
|
items: [
|
|
|
|
{ text: 'useArrayData', link: '/composables/useArrayData' },
|
|
|
|
],
|
|
|
|
},
|
2025-01-24 16:51:30 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
socialLinks: [{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }],
|
|
|
|
},
|
|
|
|
});
|