[에러대백과] Attempted import error: ' ' does not contain a default export

2022. 5. 16. 23:01WEB Dev/에러대백과

728x90

 

 

api 모듈을 모아둔 컴포넌트에서 export - import 해온 함수를 쓰려고 하니 

다음과 같은 에러가 떴다.

Attempted import error: '경로' does not contain a default export

이 경우는 export default로 해당 컴포넌트에서 default 로 내보낸 함수가 아닌 다른 함수들을 그냥 쓰려고 하면 나오는 오류로 

 

import axiosLoginAccount from '../../api/apiCommunicate';

 

위와 같이 쓰는 것이 아닌 

 

 

import { axiosLoginAccount } from '../../api/apiCommunicate';

 

위와 같이 쓰면 해당 오류가 발생하지 않는다.

728x90