This commit is contained in:
cxc
2022-12-13 17:27:14 +08:00
commit ebe22c45e5
53 changed files with 8482 additions and 0 deletions

20
vite.config.js Normal file
View File

@ -0,0 +1,20 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx({
// include: ["./src/**/*.vue", "./src/**/*.jsx"],
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});