Unable to resolve path to module 'react-icons/fc' import/no-unresolved
react 오류 해결 .eslintrc.js 들어간다 rules 안에 'import/no-unresolved' : 'off' 를 추가해준다 출처 tristan91.tistory.com/563 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
2021.02.18