Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- React.js
- returnType
- 성능최적화
- JS console
- 공통컴포넌트
- 레이아웃쪼개기
- React Native
- typescript
- vue.js
- 제네릭
- utilty type
- reactjs
- 폰트적용하기
- 커스텀
- 누구나 자료구조와 알고리즘
- 개발콘텐츠
- 타입스크립트
- TSDoc
- react
- 2022
- CSS
- NonNullable
- 타입좁히기
- 반복줄이기
- const 단언문
- 리액트
- click and drag
- 티스토리꾸미기
- javascript
- Chart.js
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js/에러일지] SassError: Undefined variable 본문
오늘도 외쳐보는
"왜 찾지를 못하니.......!!!!!!!"
에러
Failed to compile.
./src/styles/index.scss (./node_modules/css-loader/dist/cjs.js??ref--9-oneOf-3-1!./node_modules/postcss-loader/src??ref--9-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--9-oneOf-3-3!./src/styles/index.scss)
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: Undefined variable.
╷
157 │ background-color: $navy-light;
│ ^^^^^^^^^^^
╵
src/styles/page/test/_test.scss 157:25 @import
src/styles/page/test/_index.scss 1:9 @import
src/styles/page/index.scss 1:9 @import
src/styles/index.scss 2:9 root stylesheet
원인
내가 예측한 원인은 2가지이다.
1. node-sass를 설치하지 않아서 그런가? => 설치해도 소용이 없다.
2. 선언하는 순서때문에 그런가? => 이리저리 순서를 바꿔보았지만 소용이 없다.
하지만 모두 아니었다.
그리고 오늘도 역시나 내 탓이었다.
나는 디렉토리를 이렇게 구성한 상태이다.
문제는 가장 최상단의 index.scss에서 @import 할 때 page 폴더까지만 적어주고 그 아래의 폴더인 common, test를 적지않았다.
아래처럼 폴더이름까지 적어주니 너~무 잘 찾는다.
📄 index.scss
// index.scss
// 이렇게만 해주면 안되고
@import 'page';
// 이렇게 하위 디렉토리를 명시해주니 변수를 잘 찾는다.
@import 'page/common';
@import "page/test";
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'에러일지 > Vue.js' 카테고리의 다른 글
Comments