在生产中构建错误的模板URL(Angular 4)

时间:2017-12-04 13:47:40

标签: angular typescript

这就是我定义组件的方式:

@Component({
 selector: 'LoginForm',
 templateUrl: "./" + (window.screen.width > 900 ?
 'login.component.html' :
 'login.component.mobile.html'),
 styleUrls: ['./login.component.css']
})

当我在开发模式下使用它时,这项工作。 如果我建立:

ng build --prod --aot

这不再适用了。 难道我做错了什么? (大概) 如果是这样,我该如何解决这个问题?

我正在使用角度4。

0 个答案:

没有答案