Unable to resolve path to module 'react-icons/fc' import/no-unresolved
2021. 2. 18. 20:23ㆍProgramming/React
반응형
react 오류 해결
.eslintrc.js 들어간다
rules 안에 'import/no-unresolved' : 'off' 를 추가해준다
출처
TypeScript eslint : Unable to resolve path to module './app' import/no-unresolved
첫 번째 해결법 .eslintrc 파일에서 rules안에 "import/no-unresolved": "off", 입력하면 됨 결과: .eslintrc 파일 module.exports = { parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint"],..
tristan91.tistory.com
반응형