Failed to compile.
16:13:20.256 ModuleNotFoundError: Module not found:
Error: Can't resolve 'CustomerTable.tsx' ....
node_modules
삭제 후 다시 npm install💡 이 과정에서 뜻밖에 알게된 사실
package.json
은 삭제 안 하고node_modules
만 삭제하고 재설치하면 package.json에 적힌 버전과 실제 설치된 패키지의 버전이 달라질 수 있음..!!!
한 패키지가 적힌건 분명 동료와 같은 버전인데 자꾸 나만 오류가 나서 알게 되었다 휴😬
git rm --cached FILENAME
customeTable.tsx
컴포넌트의 이름을 **C**ustomerTable.tsx
(맨 앞 대문자)로 바꿔서 난 오류 ➡️ You save me 🥲 stackoverflow 답변the vercel use the Linux that is case sensitive and read "/Components" as different of "/components".
If you changed the file or folder name to lowercase or uppercase, your remote branch may not be updated with the new name.
In this case you can be use the command
✨ git mvoldNameFileOrFolder
newNameFileOrFolder
and commit + push. Or save file or folder in another place, remove it from project and commit. After commit, past it again in project, commit and push.
감사합니다 덕분에 오류해결했네요