webpack 3.8.1を使用していますが、次のビルド警告のインスタンスがいくつか表示されます。
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
紛らわしいのは、参照されている「2つの」ファイルが1つのファイルであるということです。ディレクトリには、大文字と小文字だけが異なる2つのファイルはありません。
また、これらの警告の影響を受ける場合、ホットリローダーがファイルへの変更を取得しないことがよくあることにも気づきました。
この問題の原因は何ですか?