- webpack-require-demo
Module not found: Error: a dependency to an entry point is not allowed
change:
entry: {
index: './index', //我们开发时的入口文件
ensure: './ensure'
},
to:
entry: {
index: './index', //我们开发时的入口文件
ensure: ['./ensure']
},