fix
All checks were successful
/ upload (release) Successful in 1m38s

This commit is contained in:
pavel 2026-02-10 21:53:13 +01:00
commit 25349c33e3
2 changed files with 13 additions and 1 deletions

12
frontend/vite.config.js Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from 'vite';
export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
}
}
}
});