Open VictorioBerra opened 7 years ago
https://github.com/preboot/angular-webpack/blob/51c72e481eecdaa461b8c3a1f021d2f2064e4b80/webpack.config.js#L44:L49
if (!isTest) { config.entry = isTest ? {} : {
We only get this far if !isTest === true. With that logic, config.entry will never be an empty object.
!isTest === true
config.entry
https://github.com/preboot/angular-webpack/blob/51c72e481eecdaa461b8c3a1f021d2f2064e4b80/webpack.config.js#L44:L49
We only get this far if
!isTest === true
. With that logic,config.entry
will never be an empty object.