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
It happened to me on angular 6. It's capital and small letter misusage error which your ide or text editor may ignore. I USED
import { PayComponent } from './payment/pay/pay.component';
INSTEAD OF
import { PayComponent } from './Payment/pay/pay.component';
IMAGINE JUST "P" and "p". Goodluck.