feature/survey #56

Merged
swyoo merged 24 commits from feature/survey into dev 2025-06-04 16:31:01 +09:00
4 changed files with 10 additions and 3 deletions
Showing only changes of commit 46720229fc - Show all commits

View File

@ -2,7 +2,7 @@ NEXT_PUBLIC_RUN_MODE=development
# 모바일 디바이스로 로컬 서버 확인하려면 자신 IP 주소로 변경
# 다시 로컬에서 개발할때는 localhost로 변경
#route handler
NEXT_PUBLIC_API_URL=http://172.30.1.23:3000
NEXT_PUBLIC_API_URL=http://172.30.1.15:3000
#qsp 로그인 api
NEXT_PUBLIC_QSP_API_URL=http://1.248.227.176:8120

View File

@ -2,7 +2,7 @@ NEXT_PUBLIC_RUN_MODE=local
# 모바일 디바이스로 로컬 서버 확인하려면 자신 IP 주소로 변경
# 다시 로컬에서 개발할때는 localhost로 변경
#route handler
NEXT_PUBLIC_API_URL=http://172.30.1.23:3000
NEXT_PUBLIC_API_URL=http://172.30.1.15:3000
#qsp 로그인 api
NEXT_PUBLIC_QSP_API_URL=http://1.248.227.176:8120

View File

@ -107,6 +107,13 @@ export default function ZipCodePopup() {
<td>{item.address3}</td>
</tr>
))}
{addressInfo?.length === 0 && (
<tr>
<td colSpan={3} className="al-c">
<div className="nodata"> .</div>
</td>
</tr>
)}
</tbody>
</table>
</div>

View File

@ -1,7 +1,7 @@
import getConfigs from '@/config/config.common'
// 환경마다 달라져야 할 변수, 값들을 정의합니다. (여기는 local 환경에 맞는 값을 지정합니다.)
const baseUrl = 'http://172.30.1.23:3000'
const baseUrl = 'http://172.30.1.15:3000'
const mode = 'local'
// 환경마다 달라져야 할 값들을 getConfig 함수에 전달합니다.