Reputation: 23652
I am getting this error when trying to use CSS-Loader...
Module not found: Error: Cannot resolve module 'file'
What's going on?
Upvotes: 1
Views: 1018
Reputation: 23652
Poorly named error. To fix,
npm install --save file-loader
Module "file" is actually file-loader
but the syntax removes the word loader for some reason.
Upvotes: 1