initial vibes

This commit is contained in:
root
2026-09-13 15:08:12 +02:00
commit 46cc687f57
24 changed files with 2754 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': { target: 'http://localhost:8080', ws: true },
},
},
})