feat: LocationView 고도화 - 지도 클릭 시 사이드바 상세 정보 표시 및 구역 필터링 구현

This commit is contained in:
2026-06-11 09:47:57 +09:00
parent 2b9c965c91
commit 164568843b
6 changed files with 543 additions and 9 deletions

View File

@@ -4,5 +4,15 @@ export default defineConfig({
server: {
port: 8080,
host: true, // Listen on all local IPs
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
'/uploads': {
target: 'http://localhost:3000',
changeOrigin: true,
}
}
},
});