sheep/vite.config.ts

14 lines
242 B
TypeScript
Raw Normal View History

2022-09-16 18:14:04 +08:00
import vue from "@vitejs/plugin-vue";
2022-09-30 09:48:41 +08:00
import { defineConfig } from "vite";
2022-09-16 18:14:04 +08:00
// https://vitejs.dev/config/
export default defineConfig({
2022-09-30 11:06:50 +08:00
base: "./",
2022-09-30 09:48:41 +08:00
plugins: [
vue({
// 支持 Markdown 文件加载
include: [/\.vue$/],
}),
],
2022-09-16 18:14:04 +08:00
});