mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
|
|
import Components from "unplugin-vue-components/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
Components({
|
|
dirs: [path.resolve(__dirname, ".vitepress/theme/components")],
|
|
extensions: ["vue", "md"],
|
|
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
|
|
dts: true,
|
|
}),
|
|
],
|
|
});
|