I\'ve followed the starting guide and expanded a little upon for a previous angular 2 version. I\'ve updated my revision and changed everything accordingly. When I am runnin
Because of version change it throws 404 error. to resolve this issue we need to do below modifications in systemjs.config.js file:
replace npm:angular-in-memory-web-api/ with npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js. in map.
remove below code in packages:
'angular-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
}