refactor: change ports to non-standard (backend: 8765, frontend: 4321)

This commit is contained in:
TheRaiwy
2026-06-01 13:35:58 +03:00
parent e11df2ff92
commit df81f7abcc
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -5,9 +5,9 @@ export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 3000,
port: 4321,
proxy: {
'/api': 'http://backend:8000',
'/api': 'http://backend:8765',
},
},
})