Module not found: Error: Can't resolve 'sass-loader'
Go to the project and run below two commands
npm install sass-loader -D
npm install node-sass -D
As in above comment - false alarm. Somewhere between Docker image caching and npm, the sass-loader and node-sass modules were reported as being installed, while not actually being installed. The usual rm node_modules
and rebuilding with no cache trick fixed it.