Initial Commit

This commit is contained in:
shiny_nematoda 2022-04-07 02:12:25 +05:30
commit 98d558ad6f
27 changed files with 3097 additions and 0 deletions

14
vite.config.js Normal file
View file

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