perosnel işlemleri change

This commit is contained in:
2025-11-07 00:25:21 +03:00
parent 8b4472c349
commit c9abe6cc55
8 changed files with 693 additions and 138 deletions

View File

@@ -4,6 +4,12 @@ import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
server: {
port: 5173
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3002',
changeOrigin: true
}
}
}
});