如下代码:
module.exports = {
entry : "app.js",
output: {path : __dirname + "/dist",
filename : "bundle.js"}
};
文件结构
learn
--dist
--bundle.js
--app.js
--index.html
--webpack.config.js
问题 : 为什么明明有app.js ,打包时提示 “ERROR in Entry module not found: Error: Cannot resolve module 'app.js' in /Users/zhouwangsheng/Desktop/learn”