我正在将一个角度(1.6.2)应用程序从gulp迁移到webpack 2.我正在使用angular-ui-bootstrap和typeahead-popup-template-url属性。它看起来像
typeahead-popup-template-url="app/somePathHere/custom-popup.html"
如何在webpack中使用它?我收到一条错误消息:
Error: [$compile:tpload] Failed to load template: app/somePathHere/custom-popup.html
我认为这不是道路问题。尝试了我能想到的所有组合。另外,当我迁移角度组件时,我必须更换
templateUrl : 'app/somePathHere/some-component.html',
与
template : require('./some-component.html'),
可能类似吗?
BR