I am getting this error when trying to use CSS-Loader...
Module not found: Error: Cannot resolve module 'file'
What's going on?
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.
loaders : [ 'file', ... ], and Webpack tries both file and file-loader and gives up if it can't find any of those modules.