codigo refactorizado y ordenado, listo para siguiente fase
This commit is contained in:
19
frontend/vite.config.js
Normal file
19
frontend/vite.config.js
Normal 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 }
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user