getting things going

This commit is contained in:
metacryst
2026-01-29 08:20:27 -06:00
parent c09b08a474
commit 6d50337e3b
9 changed files with 377 additions and 2 deletions

View File

@@ -8,6 +8,20 @@ export default defineConfig({
emptyOutDir: true,
},
server: {
proxy: {
"/login": {
target: "http://localhost:10002",
changeOrigin: true
},
"/profile": {
target: "http://localhost:10002",
changeOrigin: true
},
"/api": {
target: "http://localhost:10002",
changeOrigin: true
}
},
host: true,
allowedHosts: ['sam.local'],
}