해결된 질문
작성
·
198
1
import axios from 'axios';
const axiosInstance = axios.create({
// 안드는 localhost:3000이 안먹힐 수 있기에 10.0.2.2로 테스트
baseURL: 'http://10.0.2.2:3030',
withCredentials: true,
});
export default axiosInstance;
이럴때 안드로이드는 제대로 동작하지만, ios는 다시
import axios from 'axios';
const axiosInstance = axios.create({
// 안드는 localhost:3000이 안먹힐 수 있기에 10.0.2.2로 테스트
baseURL: 'http://localhost:3030',
withCredentials: true,
});
export default axiosInstance;
이렇게 바꿔주어야 동작합니다. 이렇게 매번 바꿔서 체크하는게 맞을까요?