Vue

Visual Studio의 Vue.js Web 어플리케이션 빌드시 에러 해결방법

지오준 2021. 12. 16.
반응형

1. 에러메세지(Error: Cannot find module '@vue/babel-preset-app')가 표시될경우에는 모듈을 추가 설치해서 해결할 수 있습니다.

#npm과 node.js가 설치된경우에 프로젝트가 설치된 폴더에서 아래의 명령어를 실행합니다.
npm install @vue/babel-preset-app --save-dev

2. 에러메세지(Error: Command failed cli-plugin-e2e-nightwatch/nightwatch.config.js)가 표시될경우에는 모듈을 추가 설치해서 해결할 수 있습니다.

#npm과 node.js가 설치된경우에 프로젝트가 설치된 폴더에서 아래의 명령어를 실행합니다.
npm install @vue/cli-plugin-e2e-nightwatch --save-dev
반응형

댓글