반응형
prettier사용시 뜨는 에러입니다. .env 키값에 대한 에러인데요 어떤 의미를 가지고 있을까요?
export default가 아닌 export된 모듈들은 아래와 같은 방식으로 import합니다
import {REACT_APP_API_ENTERPRISE_HOST} from 'test'
위 에러는 괄호와 식별자 사이 간격을 띄우라는 얘기입니다.
import { REACT_APP_API_ENTERPRISE_HOST } from 'test'
이상입니다
'개발 > react 생태계' 카테고리의 다른 글
[React] Newline required at end of file but not found (0) | 2022.07.08 |
---|---|
[React] Expected blank line before this statement (0) | 2022.07.07 |
[React] Module not found: Can't resolve 'react/jsx-runtime' (0) | 2022.06.29 |
[React] RSA in react.js and node.js (0) | 2022.06.24 |
cra에서 proxy 사용하기 (0) | 2022.03.20 |