2026-04-04 21:47:01 +02:00
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
server: {
|
|
|
|
|
port: 5173,
|
|
|
|
|
proxy: {
|
|
|
|
|
'/api': {
|
|
|
|
|
target: 'http://localhost:8080',
|
|
|
|
|
changeOrigin: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
build: {
|
2026-04-04 23:44:50 +02:00
|
|
|
outDir: 'dist',
|
2026-04-04 21:47:01 +02:00
|
|
|
emptyOutDir: true,
|
2026-04-05 21:10:03 +02:00
|
|
|
assetsDir: '_app',
|
2026-04-04 21:47:01 +02:00
|
|
|
},
|
|
|
|
|
});
|