-
vue error 해결법 : vue 2 에서 sass-loader 설치 오류 해결하는법Error Handling 2021. 4. 28. 20:34반응형
vue 버젼 2에서 scss 를 사용하기 위해 sass-loader 를 설치할 경우 아래와 같은 다양한 에러가 순차적으로 발생하면서 어려움을 겪을 때가 있다.
Module build failed: TypeError: this.getOptions is not a function at Object.loader
Module build failed: TypeError: Cannot read property 'toString' of undefined
vue UnhandledPromiseRejectionWarning: TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined
모두 설치한 모듈의 버젼이 현재 vue 2 버젼 또는 웹팩과 맞지않아 발생한 에러이다.
따라서 아래 명령어처럼 적합한 버젼을 명기하여 설치하면 해결된다.
npm i node-sass@4.14.1 npm i sass-loader@7.3.1
반응형'Error Handling' 카테고리의 다른 글
인텔리제이 error 해결법 : cannot resolve symbol (0) 2021.08.01 vue error 해결법 : 'vue-cli-service' is not recognized as an internal or external command / 'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 (0) 2021.07.13 윈도우 10 블루투스 사라짐 해결법 : bluetooth 가 꺼져 있습니다 (0) 2021.04.11 text-align: center 작동하지 않을 때 해결법 (0) 2021.03.22 vue error 해결법 : v-html 에서 css 적용안될 때 (0) 2021.03.16