mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 08:16:42 +00:00
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import { defineConfig } from 'vite'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
Components({
|
|
dirs: ['.vitepress/theme/components'],
|
|
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
|
}),
|
|
],
|
|
ssr: { noExternal: ['@arco-design/web-vue'] },
|
|
})
|