Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- setInterval 정지
- pm2
- setInterval clear
- DatePicker
- 서버동기화
- 1883
- DataGridView 직접 입력
- html #select #option #multiple
- mySQL_Replication
- setInterval 외부 정지
- pm2 설치
- pm2 상태 확인
- 데이터테이블 데이터 넣기
- pm2 확인
- mosquitto.conf
- timepicker
- Replication
- 공인IP
- pm2 시작
- mosquitto
- datagridview 직접입력
- allow_anonymouse
- invalid data
- transfer
- map이 undefined가 뜰 때
- AntDesign
- 맥 어드레스
- listener 1883
- c# datagridview 데이터 넣기
- setInterval 중지
Archives
- Today
- Total
개발 노트
next.js 초기 셋팅 에러 parsing error: cannot find module 'next/babel' ... 본문
세팅 후 프로젝트 시작시 파싱에러 발생
루트 경로 에 .bablerc 파일생성
// .bablerc
{
"presets": ["next/babel"],
"plugins": []
}
.eslintrc.json파일 수정
{
"extends": "next/core-web-vitals"
}
↓ 다음과 같이 수정
{
"extends": ["next/babel","next/core-web-vitals"]
}
에러가 해제된것을 확인할 수 있습니다
'React' 카테고리의 다른 글
Next.js app router 기본 (0) | 2024.01.04 |
---|---|
Next.js 초기세팅 (0) | 2024.01.04 |
AMChart - 차트가 화면에 안 나오는 경우 (0) | 2023.09.18 |
React - useLocation( ), useSearchParams( ) (0) | 2023.09.09 |
Ant Design - Modal에 있는 버튼에 css 적용 (0) | 2023.08.31 |