chore: initial commit

This commit is contained in:
Matthew Raymer
2025-10-15 10:46:50 +00:00
parent 54478b1c97
commit 1e6c4bf7fc
174 changed files with 6867 additions and 21404 deletions

View File

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