Skip to content

Commit

Permalink
websiteV2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rynstick committed Aug 9, 2023
1 parent b316bcd commit f671e91
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions docs/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import { defineConfig } from 'vitepress'

// https://vitepress.dev/reference/site-config
export default defineConfig({

title: "LBS wincc Unified",
description: "A Big library",
themeConfig: {
socialLinks: [
{ icon: 'github', link: 'https://github.com/Rynstick/LBS' }
],
search: {
provider: 'local'
},
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Getting Started', link: '/Installation' }
],

sidebar: [
{
text: 'Getting Started',
collapsed: false,
items: [
{ text: 'Installation', link: '/Installation' },
{ text: 'How to use', link: '/HowToUse' },
{ text: 'How to Update', link: '/HowToUpdate' },
{ text: 'PatchNotes', link: '/PatchNotes' }
]

},
{
text: 'Functions',
collapsed: true,
items: [

{ text: 'Array Operations', link: '/ArrayOperations' },
{ text: 'Date-Time Conversion', link: '/DateTimeConversion' },
{ text: 'Database Operations', link: '/DataBaseOperations' },
{ text: 'Others', link: '/Others' }
]





},
{
text: 'FacePlates',
collapsed: true,
items: [

{ text: 'DashBoard', link: '/Dashboard' }
]





},

]
}
})

0 comments on commit f671e91

Please sign in to comment.