0š
The error happens if you are importing the same file with a difference in capitalization at different place.
e.g;- below I am importing same component āAppControlInputā with a difference in āuiā capitalization. In the first case, āuiā is lowercase while in other āuiā is uppercase.
- import AppControlInput from ā~/components/ui/AppControlInputā;
- import AppControlInput from ā~/components/UI/AppControlInputā;
Just make sure you have the same capitalization in every place you import component.
Source:stackexchange.com