2022-09-05 19:12:20 +00:00
|
|
|
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' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2022-09-05 19:46:55 +00:00
|
|
|
text: 'Creating Blocks',
|
2022-09-05 19:12:20 +00:00
|
|
|
items: [
|
2022-09-05 19:46:55 +00:00
|
|
|
{ text: 'Basics', link: '/creating-blocks/' },
|
|
|
|
{ text: 'Examples', link: '/creating-blocks/examples' },
|
2022-09-05 19:12:20 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
});
|