问题
I have recently created a project using angular-cli and am unable to run it using ng serve
while running ng serve command it throws this error
Cannot read property 'AssetUrl' of undefined TypeError: Cannot read property 'AssetUrl' of undefined at Object. (/Users/shaan/Sites/node-apps/migration/Outgrow-frontend/node_modules/@angular/compiler-cli/src/private_import_compiler.js:10:51)
回答1:
Consider taking following steps:
check your angular-cli.json and package.json for version of angular-cli in your project, it should be same e.g. ("version": "1.0.0-beta.x").
install angular-cli as global package using
npm install -g angular-cli
this should fix your problem.
回答2:
I solved issue by updating angular-cli to v1.0.0-beta.18 (which is latest build) and did "ng init" within local project folder.
follow https://github.com/angular/angular-cli#updating-angular-cli
来源:https://stackoverflow.com/questions/40238516/error-while-running-ng-serve-command-in-angular-2-project