22 lines
404 B
TypeScript
22 lines
404 B
TypeScript
|
|
import { defineConfig } from 'vite';
|
||
|
|
import react from '@vitejs/plugin-react';
|
||
|
|
|
||
|
|
const apiTarget = process.env.VITE_API_TARGET || 'http://localhost:8082';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
server: {
|
||
|
|
port: 5174,
|
||
|
|
proxy: {
|
||
|
|
'/api/': {
|
||
|
|
target: apiTarget,
|
||
|
|
changeOrigin: true,
|
||
|
|
secure: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
outDir: 'dist',
|
||
|
|
},
|
||
|
|
});
|