일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 스프링부트
- AWS
- machine-learning
- Java
- 리액트
- c#
- Kotlin
- 리팩토링
- DataGridView
- VOA
- Python
- 쿠버네티스
- react
- docker
- design pattern
- kubernetes
- 코틀린
- Winform
- 마이바티스
- Spring Boot
- git
- Spring
- 도커
- 스프링
- github
- 파이썬
- 자바
- mybatis
- springboot
- MySQL
Archives
- Today
- Total
보뇨 다이어리
parcel 프로젝트 빌드시 Unexpected token 에러 본문
반응형
문제는 아래 사진과 같다
생각해보면 전혀 문제가 될부분이 아닌데 문제를 일으키니 답답할노릇이였는데.... 아주 간단함! 아래와 같이 추가해주고
1 | npm install --save-dev babel-plugin-transform-class-properties | cs |
.babelrc 파일에 아래와 같이 붙혀주면 끄으읏!
1 2 3 4 5 6 7 8 9 10 11 | // without options { "plugins": ["transform-class-properties"] } // with options { "plugins": [ ["transform-class-properties", { "spec": true }] ] } | cs |
참고 https://babeljs.io/docs/en/babel-plugin-transform-class-properties/
반응형
'프론트엔드 > React 정보' 카테고리의 다른 글
React Router - useRouteMatch 에 대해 (0) | 2020.08.16 |
---|---|
export default 사용할때 주의할점 (0) | 2018.09.27 |
정규식 완전 정리 (0) | 2018.09.04 |
Cannot read property 'createElement' of undefined 에러 (3) | 2018.09.02 |
Access-Control-Allow-Origin 에러 (0) | 2018.08.21 |