webpack报错2 ERROR in Entry module not found

解决2:

报错如下

ERROR in Entry module not found: Error: Can't resolve ' src/index.js' in 'D:0-学习笔记6-vuevuecodewebpackwebpack01'

ERROR in multi (webpack)-dev-server/client?http://localhost:3000  src/index.js
Module not found: Error: Can't resolve ' src/index.js' in 'D:0-学习笔记6-vuevuecodewebpackwebpack01'
 @ multi (webpack)-dev-server/client?http://localhost:3000  src/index.js main[1]

找不到对应文件,解决问题

entry:'./src/index.js', //解决	

路径需要+./

原文地址:https://www.cnblogs.com/furfur-jiang/p/12238738.html