1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00
Files
dozzle/docs/vite.config.ts
Amir Raminfar baf63ca9f1 Revert "docs: updates fonts (#3042)"
This reverts commit 8e894f0e65.
2024-06-17 19:08:28 -07:00

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,
}),
],
});