Files
vue-ts-example-2025/vite-plugins/01.unplugin-vue-markdown.ts
严浩 a09b1da78d
Some checks failed
CI/CD Pipeline / build-and-deploy (push) Has been cancelled
CI/CD Pipeline / playwright (push) Has been cancelled
refactor(vite-plugins): 重新命名插件文件以优化加载顺序
2025-10-23 22:38:16 +08:00

10 lines
234 B
TypeScript

import type { PluginOption } from 'vite';
import Markdown from 'unplugin-vue-markdown/vite';
export default [
// https://github.com/unplugin/unplugin-vue-markdown
Markdown({
headEnabled: true,
}),
] satisfies PluginOption;