create-react-app: Webpack warning: There is another module with an equal name when case is ignored
I’m using 0.4.1
version and I get:
Warning in (webpack)/buildin/module.js
There is another module with an equal name when case is ignored.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Rename module if multiple modules are expected or use equal casing if one module is expected.
Warning in ./~/react-scripts/~/webpack/buildin/module.js
There is another module with an equal name when case is ignored.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Rename module if multiple modules are expected or use equal casing if one module is expected.
when I run the app by npm start
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 16 (11 by maintainers)
I was able to reproduce with the following steps:
create-react-app app-test
within it.npm start
npm start
to receive these errors.This happened to me earlier today while I was doing some file cleanup while also developing. I was able to clear them out by
cd..
out back to the root path (just before ‘TEST’) and navigating back in, then runningnpm start
. Not sure what could cause it to happen consistently, but it might be related to some file structure changes during development.