20 lines
724 B
JavaScript
20 lines
724 B
JavaScript
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 }
|
|
}
|
|
}
|
|
});
|
|
|