基于 Vite 快速生成文档站点
- 开箱即用,快速生成文档站点
- 基于vite 启动速度快,编写体验极佳
- 支持文档搜索
- 自动生成文章目录
- 自定义主题
yarn create vvdoc
yarn
yarn dev
名称 | 地址 |
---|---|
vvModal | https://vvmodal.vercel.app/ |
https://github.com/zwmmm/create-vvdoc/blob/main/template/vvdoc.config.ts
当你需要自定义入口,比如全局修改Antd的配置
根目录新增一个 index.tsx
import { ConfigProvider } from 'antd'
import zhCN from 'antd/lib/locale/zh_CN'
export default function (props: any) {
return (
<ConfigProvider locale={zhCN} componentSize="small">
{props.children}
</ConfigProvider>
)
}
- Message,
- Alert,
- Playground