mirror of
https://github.com/RhenCloud/Cloud-Index.git
synced 2025-12-06 15:26:10 +08:00
17 lines
417 B
TypeScript
17 lines
417 B
TypeScript
import { defineUserConfig } from "vuepress";
|
|
import { plumeTheme } from "vuepress-theme-plume";
|
|
|
|
export default defineUserConfig({
|
|
theme: plumeTheme({
|
|
collections: [
|
|
{
|
|
type: "doc",
|
|
dir: "guide",
|
|
linkPrefix: "/guide/",
|
|
title: "TypeScript 笔记",
|
|
sidebar: ["basic", "types"],
|
|
},
|
|
],
|
|
}),
|
|
});
|