[css] 광원효과, glow 효과 css style 참고사이트
https://singun11.tistory.com/111 [TIL] box-shadow로 광원 효과처럼 보이네? 요즘 그냥 Github 페이지로 배포하는데 되게 되게 편해보여서 Github 페이지를 이용해서 여러개를 배포해보고 있었다.. 그러다가 오늘은 css-animation-study라는 레포를 만들고 animation 스킬들을 공부해 singun11.tistory.com box-shadow: 0 0 1px #dee9f19c, 0 0 2px #dee9f19c, 0 0 3px #dee9f19c, 0 0 4px #dee9f19c, 0 0 5px #dee9f19c, 0 0 6px #dee9f19c, 0 0 7px #dee9f19c, 0 0 8px #dee9f19c, 0 0 9px #dee9f19c, 0 ..
[React] .jsx 생략하고 import시 찾을 수 없다는 오류
react 팀 프로젝트 중 원래 파일 뒤의 .jsx 를 생략해도 import 되었는데, 오류가 나는 현상이 발생했다.(eslint) Unable to resolve path to module './pages/Login/index' import/no-unresolved Line 4:19: Missing file extension for "./pages/Login/index".. .eslintrc.js 에서 settings를 아래와 같이 추가하여 해결 (TS안쓸경우는 .ts,.tsx 생략하면됨) .. rules: {}, settings: { "import/resolver": { node: { extensions: [".ts", ".tsx", ".js", ".jsx"], }, }, }, cra + eslint..