使用 Webpack 捆绑 Angular 2 个项目时找不到模块
Module not found while bundling Angular 2 project using Webpack
我正在使用 WebStorm 2016.3 创建一个 Angular 2 项目。我已经按照这个 post 来捆绑我的项目:
https://angular.io/docs/ts/latest/guide/webpack.html
当我输入命令 npm start
时,它显示了一个错误列表:
我已将每个文件中的 templateUrl
更改为 src/components/<template url>
,但它仍然显示这些错误。
有人可以帮我吗?
试试这个:../views/main-application.html
url 是相对于 .ts 文件的当前路径开始的。
所以你需要先向上导航。
我正在使用 WebStorm 2016.3 创建一个 Angular 2 项目。我已经按照这个 post 来捆绑我的项目: https://angular.io/docs/ts/latest/guide/webpack.html
当我输入命令 npm start
时,它显示了一个错误列表:
我已将每个文件中的 templateUrl
更改为 src/components/<template url>
,但它仍然显示这些错误。
有人可以帮我吗?
试试这个:../views/main-application.html
url 是相对于 .ts 文件的当前路径开始的。 所以你需要先向上导航。