I'm using webpack 3.8.1 and am receiving several instances of the following build warning:
WARNING in ./src/Components/NavBar/MainMenuItemMobile.js
There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
* /Users/path/to/babel-loader/lib/index.js!/Users/path/to/NavBar/MainMenuItemMobile.js
Used by 1 module(s), i. e.
/Users/path/to/babel-loader/lib/index.js!/Users/path/to/NavBar/ConstructedMainMenuItems.js
* /Users/path/to/babel-loader/lib/index.js!/Users/path/to/Navbar/MainMenuItemMobile.js
Used by 1 module(s), i. e.
/Users/path/to/babel-loader/lib/index.js!/Users/path/to/Navbar/ConstructedMainMenuItems.js
.....
(webpack)-hot-middleware/client.js ./src/index.js
What's confusing is that the 'two' files referenced are just one file—there are no two files in the directory whose names differ only in case.
I've also noticed that my hot reloader often doesn't pick up changes to a file if it is affected by these warnings.
What could be causing this issue?
Similar issue, but my problem was packages installed in
C:\Users\<username>\AppData\Local\Yarn
. Deleting that folder and re-adding the global packages I wanted fixed the issue.This is usually a result of a minuscule typo.
If you are importing your modules like
import Vue from 'vue'
,import Vuex from 'vuex'
.Go through your files and check where you used
from 'Vue'
orfrom 'Vuex'
The error descriptions should have been written more clearly, but what I explained has been the cause of my problem each time for this error on webpack commands.
I had the same issue, I had named my react folder as UI and the path which was generated by webpack was somehow making it in the lowercase.
So, I renamed it to ui ie in lowercase instead of UI, that made my warring go right away.
Thanks.
I also have this warning, but my problem is that, for example, there is the file directory of React project:
And there will be a similar warning. Because you'd better not use the same file name(such as
action.js
in those folders) excludingindex.js
, otherwise this can lead to unexpected behavior when compiling on a file system with other case-semantic.To solve this warning, we could do that:
This is my experience, hope it could help someone.
I had a similar error but not exactly the same described by other answers. I hope my answer can help someone.
I was importing a file in two components (angular 7 project):
Component 1:
Component 2:
This is a foolish mistake: the problem here is I'm using two differents requires on the same file with different capital letters (it generated a warning).
How to solve the problem ? Use the same model.
Component 1:
Component 2:
OR
Component 1:
Component 2:
If you are seeing this in Visual Studio Code and Gitbash, go to settings, and search for C:\ (uppercase C) and change the path for the Gitbash.exe to c:\ and it will go away.