codigo refactorizado y ordenado, listo para siguiente fase

This commit is contained in:
2025-09-26 15:37:06 -06:00
parent 7b1935537a
commit 4783f51454
17 changed files with 1900 additions and 511 deletions

19
frontend/vite.config.js Normal file
View File

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
proxy: {
'/api': { target: 'http://localhost:3000', changeOrigin: true },
'/events': { target: 'http://localhost:3000', changeOrigin: true, ws: false },
'/authorize': { target: 'http://localhost:3000', changeOrigin: true },
'/accounting': { target: 'http://localhost:3000', changeOrigin: true },
'/post-auth': { target: 'http://localhost:3000', changeOrigin: true },
'/authorize-inner': { target: 'http://localhost:3000', changeOrigin: true },
'/test': { target: 'http://localhost:3000', changeOrigin: true }
}
}
});