We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1eaaa3a + 413bbeb commit 54ee8a9Copy full SHA for 54ee8a9
src/components/ide/IDE.jsx
@@ -597,7 +597,7 @@ const IDE = () => {
597
};
598
599
// API 엔드포인트 URL 설정 (스웨거 API로 변경)
600
- const API_URL = 'http://3.38.244.234:8080/api/code/run';
+ const API_URL = 'http://13.209.72.114:8080/api/code/run';
601
602
// 스웨거 API에 맞게 언어 매핑 함수
603
const mapLanguageToAPI = (langId) => {
@@ -633,7 +633,7 @@ const IDE = () => {
633
// CORS 우회를 위한 프록시 서버 사용 (개발 환경에서)
634
const apiUrl = process.env.NODE_ENV === 'development'
635
? '/api/code/run' // 개발 환경에서는 프록시 사용
636
- : 'http://3.38.244.234:8080/api/code/run'; // 프로덕션 환경에서는 직접 호출
+ : 'http://13.209.72.114:8080/api/code/run'; // 프로덕션 환경에서는 직접 호출
637
638
// API 호출
639
const response = await fetch(apiUrl, {
0 commit comments