我收到错误
获取http://localhost:3000/home.component.html 404(未找到)
如果我从
更改home.component.ts中的行templateUrl: './home.component.html'
到
template: require('./home.component.html')
一切正常,甚至是我不会改变的stylesUrl
所以stylesUrl与
一起使用styleUrls: [ './home.component.css' ]
并且不需要更改但是templateUrl无法使用
./
但确实可以使用require或绝对路径
代码可以在这里找到,我还没有改变任何东西https://github.com/AngularClass/angular2-webpack-starter
编辑:我刚刚在另一台计算机上执行相同的步骤(克隆存储库,安装依赖项等),然后运行项目并获得相同的错误。