Initialize a Vue 3 project

This commit is contained in:
Nettika 2026-01-28 22:34:23 -08:00
parent c2f8e74c2f
commit c688bf1cda
No known key found for this signature in database
15 changed files with 1217 additions and 1 deletions

7
vite.config.ts Normal file
View file

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