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 a
I had the same issue in angular 6 project.
This issue occurred because while importing component in the module like
import { ManageExamComponent } from './manage-Exam.component';
I have written like manage-Exam where Exam is in capital letter and webpack understand small letter.
As soon as i used
import { ManageExamComponent } from './manage-exam.component';
used exam in small and issue resolved.