When you get this error from your webpack project "ERROR in Entry module not found: Error: Can't resolve './src' in '/var/www/your-project'", you have probably used application directory different than the default. Just point entry to the right directory.
Source code viewer
module.exports = { entry: { app: './app', }, ... }Programming Language: ECMAScript