Development82 scss 기본 문법 정리, css와의 차이점 scss는 중첩, 변수 선언, 연산자 등을 활용할 수 있다. CSS 코드와의 비교 css 코드 body { font: 100% Helvetica, sans-serif; color: #333; } nav ul { margin: 0; padding: 0; list-style: none; } nav li { display: inline-block; } nav a { display: block; padding: 6px 12px; text-decoration: none; } scss 코드 $font-stack: Helvetica, sans-serif; $primary-color: #333; body { font: 100% $font-stack; color: $primary-color; } nav { ul { ma.. 2022. 5. 22. Vue-router : Uncaught RangeError: Maximum call stack size exceeded 해결 새 디자인 템플릿을 적용하던 중에 생긴 에러. authorization을 체크하는 것 때문에 fakeDB가 firebase로 연결되어 있었음. 나의 경우에는 router.beforeEach 부분을 주석처리 했더니 해결됐다. 참조) https://forum.vuejs.org/t/vue-router-uncaught-rangeerror-maximum-call-stack-size-exceeded/1994 2022. 5. 21. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 해결 Run Configurations 에 debug가 없어서 생기는 문제 해결 : application.properties에 debug 설정 추가 logging.level.org.springframework=debug logging.level.org.springframework.web=debug 2022. 5. 20. [git] error:pathspec '브랜치' did not match any file(s) known to git. 해결 이 에러는 브랜치가 업데이트가 안돼서 생기는 에러다. git remote update git fetch 이렇게 터미털에 명령어를 입력하면 브랜치 변경이 된다. 2022. 5. 18. 이전 1 ··· 16 17 18 19 20 21 다음