에러 내용
SyntaxError: Unexpected token '<'
에러 원인
그냥 node index로 실행하게 되면
JSX 문법을 js으로 compile 되지 않는다.
이를 담당하는 compiler인 react의 compile이 필요하다.
해결 방법
create-react-app 으로 프로젝트를 만들고
npm start로 실행하면 정상적으로 JSX가 compile 된다.
npx create-react-app my-app
cd my-app
npm start # not node index
참고 자료
'개발 > 에러해결' 카테고리의 다른 글
badrequestexception: 400 cannot get legacy acl for an object when uniform bucket-level access is enabled (0) | 2022.10.22 |
---|---|
국가연구자번호 조회결과가 없습니다 : 해결방법 (0) | 2022.10.22 |
SyntaxError: Cannot use import statement outside a module (0) | 2022.10.22 |
export 'Switch' (imported as 'Switch') was not found in 'react-router-dom' (0) | 2022.10.22 |
docker-compose 시 exited with code 0 또는 무한 재시작 (0) | 2022.10.22 |
댓글