Initial commit

This commit is contained in:
2026-05-12 15:40:22 -06:00
parent 5b279865a1
commit 1eac72b3cd
31 changed files with 1192 additions and 45 deletions
+15
View File
@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
// Proxy API calls to the Go server during local development.
proxy: {
'/login': 'http://localhost:8080',
'/logout': 'http://localhost:8080',
'/me': 'http://localhost:8080',
'/health': 'http://localhost:8080',
},
},
})