我有templateUrl
@Component({
templateUrl: 'app/components/controls/checkbox/checkbox.html'
})
我知道我可以使用moduleId: module.id
,但我想保留html文件的完整路径以用于我的部署目的。当我运行ng-xi18n时,我收到一个错误:
Error: Compilation failed. Resource file not found:
C:/Users/TestUser/Source/Workspaces/MyApp/src/app/
components/controls/checkbox/app/components/controls/checkbox/checkbox.html
有没有办法在不使用moduleId: module.id
的情况下解决此问题?
感谢