I have a decent sized webpack application that\'s heavily organized into particular segments. Everything works great with both pure javascript and jsx files, as anytime I u
I had similar situation but with single file. The problem was that the path of component had letter in different case instead of letters in directory path.
Directory:
components/UI/fields/
ERROR: (incorrect case of "F" in "Fields")
import PrivacyField from 'components/UI/Fields/PrivacyField';
...
CORRECT:
import PrivacyField from 'components/UI/fields/PrivacyField';
...