Enter the webpack packing command and report the following error. How should I correct it?

Entry module not found: Error: Can"t resolve "./src" in "E:\Smallcase"
  0:0  error  webpack-stylish: <please report unknown message format>

should be the entry file index.js code is as follows

Aug.03,2021

  1. first check whether there is a src folder in the directory configured by webpack, and whether the webpack.entry setting is correct
  2. if webpack.entry is not set, the webpack package will look for. / src/index.js (this is what I encountered before, plus index.js)
  3. Execute webpack--config. / webpack.config.js. under

cd webpack-demo path

Menu