Initial git commit

This commit is contained in:
codevictory 2022-05-24 23:46:18 +03:00
commit 78d33e5487
38 changed files with 11340 additions and 0 deletions

15
vite.config.ts Normal file
View file

@ -0,0 +1,15 @@
import { fileURLToPath, URL } from "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)),
},
},
});