first init

This commit is contained in:
yupili
2022-09-16 18:14:04 +08:00
commit 9001cd7c25
25 changed files with 3741 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
// 支持 Markdown 文件加载
include: [/\.vue$/],
}),
],
});