hardware.ts 356 B

123456789101112131415
  1. import type { ThemeCollectionItem } from 'vuepress-theme-plume'
  2. import { defineCollection } from 'vuepress-theme-plume'
  3. export const hardware: ThemeCollectionItem = defineCollection({
  4. type: 'doc',
  5. dir: 'hardware',
  6. title: '华菁硬件',
  7. linkPrefix: '/hardware/',
  8. sidebar: [
  9. {
  10. text: '硬件简介',
  11. link:'profile'
  12. }
  13. ],
  14. })