31 lines
818 B
TypeScript
31 lines
818 B
TypeScript
import { defineConfig } from 'vitepress';
|
|
|
|
export default defineConfig({
|
|
lang: 'en-US',
|
|
title: 'Schlechtenburg',
|
|
description: 'Experimental WYSIWYG editor framework made with Vue 3 and TypeScript',
|
|
lastUpdated: true,
|
|
|
|
themeConfig: {
|
|
sidebar: [
|
|
{
|
|
text: 'User Guide',
|
|
items: [
|
|
{ text: 'Introduction', link: '/' },
|
|
{ text: 'Try it out', link: '/try' },
|
|
{ text: 'Why Schlechtenburg?', link: '/why' },
|
|
{ text: 'Installation and usage', link: '/installation' },
|
|
]
|
|
},
|
|
{
|
|
text: 'Development',
|
|
items: [
|
|
{ text: 'Introduction', link: '/' },
|
|
{ text: 'Installation and usage', link: '/installation' },
|
|
{ text: 'Getting Started', link: '/getting-started' },
|
|
]
|
|
}
|
|
]
|
|
}
|
|
});
|