mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 09:39:15 +08:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vueJsxPlugin from '@vitejs/plugin-vue-jsx'
|
|
import { VitePluginVitepressDemo } from 'vite-plugin-vitepress-demo'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vueJsxPlugin(),
|
|
VitePluginVitepressDemo({
|
|
glob: ['**/demos/**/*.vue']
|
|
})
|
|
]
|
|
})
|