sheep/vite.config.ts

14 lines
244 B
TypeScript
Raw Permalink Normal View History

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