[Vue3] Parsing error: No Babel config file detected 오류
Parsing error: No Babel config file detected for C:\Users\kbs\Desktop\VuejsPrac\vuedongsan\vetur.config.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.
이전 포스팅의 에러를 해결하니 위와같은 에러가 발생하였다.
해결방법은 아래와 같다.
https://github.com/babel/babel/issues/11975 이거 따라해서
프로젝트 폴더에 .eslintrc.json 파일을 만들고
{
"parser": "@babel/eslint-parser",
"parserOptions": { "requireConfigFile" : "false" },
"babelOptions": { "configFile": "./.babelrc", }
}
넣어보거나
vscode의 이상한 익스텐션 끄거나 아니면 다른 폴더에 프로젝트 재생성해보시면 된다.
Author And Source
이 문제에 관하여([Vue3] Parsing error: No Babel config file detected 오류), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kbs2082/Vue3-Parsing-error-No-Babel-config-file-detected-오류저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)