FLYNNLABAboutMeCodingActivityStudy 2024초등수학
Error Angular LazyLoading serve or build
angular

Issue

"No module factory available for dependency type: ContextElementDependency"

Lazy Loading 을 적용하려고 보니 설정을 잘 했는데 위와 같은 오류가 발생했다. 설정이 잘못된 줄 알았는데 webpack 이 잘못된거였다. 아래 처럼 깔끔하게 모두 지우고 재설치하면 잘 된다. 특히 node_modules/** 이걸로 지우면 node_modules/.bin이 남을수도 있고 이러면 계속 위와 같은 오류가 발생하니깐 꼭 디렉토리를 잘 지운다 ㅎㅎ

Resolve

rm -rf node_modules package-lock.json
npm i
ng serve