8 July 2019

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
  1. module.exports = {
  2. entry: {
  3. app: './app',
  4. },
  5. ...
  6. }
Programming Language: ECMAScript