mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
21 lines
444 B
TypeScript
21 lines
444 B
TypeScript
import type { ThemeCollectionItem } from 'vuepress-theme-plume'
|
|
import { defineCollection } from 'vuepress-theme-plume'
|
|
|
|
export const tools: ThemeCollectionItem = defineCollection({
|
|
type: 'doc',
|
|
dir: 'tools',
|
|
title: 'Theme Tools',
|
|
linkPrefix: '/tools/',
|
|
sidebar: [
|
|
{
|
|
text: 'Tools',
|
|
icon: 'tabler:tools',
|
|
items: [
|
|
'custom-theme',
|
|
'home-hero-tint-plate',
|
|
'caniuse',
|
|
],
|
|
},
|
|
],
|
|
})
|