getting started

This commit is contained in:
2023-10-06 13:39:15 -05:00
parent 380afde96b
commit 7e3058a4f1
16 changed files with 1174 additions and 11 deletions

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
})