study/Headache

Vue -오류- Parsing error: No Babel config file detected for ...

salalsksjwnn 2023. 1. 27. 13:01
728x90

Vue프로젝트를 실행하고 App.vue에 있는 template 왼쪽에서 이런 오류가 발생했다

 

Parsing error: No Babel config file detected for C:\vue2023\Vue\project01\src\App.vue. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.eslint

실행에는 문제가 없는데 여간 신경쓰여서 해결해 보려 한다.

 

정말로 딱 한번 실행하고 나온거

아주 흔한 경우인지 우리형님들 사이트에서 해결방법을 바로 찾을 수 있었다.

 

좌상단 File을 눌러 Preferences를 찾고 Settings로 들어간다.

search bar에 eslint를 검색해주고 스크롤을 내리면 Edit in setting.json이 나온다

들어가서 그안에 아래 코드를 붙여넣어주고 저장하면 끝

"eslint.workingDirectories": [
  {"mode": "auto"}
],

그래도 빨간줄 뜨면 vscode껐다 키면 없어질거다

728x90