chore: config project

This commit is contained in:
EsioFreitas
2022-10-24 15:33:24 -03:00
commit 12f599d31e
32 changed files with 11277 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
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()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});