"백엔드_핵심_로직_구현_프론트엔드_연동_및_도커_배포_최적화_완료"

This commit is contained in:
2026-02-03 00:52:54 +09:00
parent ed8fc0943b
commit eeddc62089
32 changed files with 1287 additions and 318 deletions

8
services/config.ts Normal file
View File

@@ -0,0 +1,8 @@
export const API_BASE_URL = "http://localhost:8000/api";
export const getHeaders = () => {
return {
"Content-Type": "application/json",
// "Authorization": "Bearer ..." // If we implement Auth later
};
};