Matthew Heaney
Matthew Heaney
If you fix the baseUrl: `readonly baseUrl = 'https://angular.io/assets/images/tutorials/faa';` Then the full URL of the photo is: https://angular.io/assets/images/tutorials/faa/example-house.jpg and this is indeed a valid URL for the photo. However, when...
Note that the tutorial page here: https://angular.dev/tutorials/first-app/08-ngFor still has the incorrect URL: `readonly baseUrl = 'https://angular.dev/assets/tutorials/common'` While the corresponding page here: https://angular.io/tutorial/first-app/first-app-lesson-08 has the correct URL: `readonly baseUrl = 'https://angular.io/assets/images/tutorials/faa';`
This change is unfortunate. I attempted to use json-server for the Angular Tour of Heroes tutorial, but the URL in that example is "api/heroes" and so I really needed the...