Error Handling
vue error 해결법 : Module Error (from ./node_modules/sass-loader/dist/cjs.js):Node Sass version 7.0.1 is incompatible with ^4.0.0 || ^5.0.0 || ^6.0.0.
고수트
2021. 12. 27. 22:26
반응형
vue 에서 sass-loader 를 설치한 뒤에
node-sass 를 설치 할 때에 아래와 같은 오류가 나는 경우가 있다.
Module Error (from ./node_modules/sass-loader/dist/cjs.js):Node Sass version 7.0.1 is incompatible with ^4.0.0 || ^5.0.0 || ^6.0.0.
위 에러는 해당 버젼이 sass-loader 와 호환이 되지않아 발생한다.
따라서 아래 명령어로 버전을 낮춰 다시 설치하면 해결된다.
# 기존 버전 삭제
$ npm uninstall node-sass
# 원하는 버전대 설치
$ npm install node-sass@6
# 혹시 안되면 uninstall 후 버전을 더 낮춰본다.
$ npm install node-sass@5
반응형