etc/error

[Error] Cannot find file: 'index.js' does not match the corresponding name on disk

prefer2 2021. 11. 18. 11:28

 

Cannot find file: 'index.js' does not match the corresponding name on disk: '.\node_modules\React\react'.

분명 index.js 파일도 멀쩡하게 있고 크게 작성한 코드도 없는데 오류가 발생해서 한참을 고민했다. 알고보니

import React from 'React'

react로 적어야 하는 것을 React로 적어서 발생하는 오류였다

import React from 'react'

 

모듈 import뿐만 아니라 전체적으로 대소문자를 잘못 입력하면 나타나는 오류인 것 같다. 오류 메시지만 보고 혼자 엄청 고민했다. 대소문자를 잘 구분해서 적어주자😭

https://stackoverflow.com/questions/55149843/error-cannot-find-file-index-js-does-not-match-the-corresponding-name-on-dis

 

Error: Cannot find file: 'index.js' does not match the corresponding name on disk: './node_modules/React/react'

Here is an image of the error and the console error... My code seems to be correct and the paths of the imports are good too, I don't understand why I'm getting this error. Notifications.js import...

stackoverflow.com

 

반응형