docs: update docs

This commit is contained in:
pengzhanbo 2024-12-08 11:47:15 +08:00
parent cdee6dc105
commit 51ced760e5
2 changed files with 18 additions and 1 deletions

View File

@ -1,7 +1,8 @@
import { defineNotesConfig } from 'vuepress-theme-plume'
import { themeGuide } from './theme-guide.js'
export const enNotes = defineNotesConfig({
dir: 'en/notes',
link: '/',
notes: [],
notes: [themeGuide],
})

View File

@ -0,0 +1,16 @@
import { defineNoteConfig } from 'vuepress-theme-plume'
export const themeGuide = defineNoteConfig({
dir: 'theme/guide',
link: '/guide/',
sidebar: [
{
text: 'Quick Start',
collapsed: false,
icon: 'carbon:idea',
items: [
'intro',
],
},
],
})