Reputation: 5801
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)
Upvotes: 2
Views: 2180
Reputation: 4983
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
Upvotes: 0
Reputation: 161
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.
Upvotes: 3