我试图创建一个角度为2的应用程序,我使用视频2,我用npm安装视频2,我检查我的node_modules和videogular2存在于目录但是当我运行我的应用程序时出现错误:
angular2-polyfills.js:126获取http://localhost:3000/node_modules/videogular2/core 404(未找到)
angular2-polyfills.js:390错误:错误:XHR错误(404 Not Found)loading
这是我的配置:
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
},
map: {
'videogular2': './node_modules/videogular2'
}
});
System.import('app/main')
.then(null, console.error.bind(console));
答案 0 :(得分:2)
万一有人需要回答
这是您在通过npm install videogular2安装后需要包含在system.config.js中的内容
{{1}}
快乐的编码......
答案 1 :(得分:1)
我会在SystemJS配置中为videogular2添加一个包块:
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
},
videogular2: { <-------
defaultExtension: 'js'
}
},
map: {
'videogular2': './node_modules/videogular2'
}
});
System.import('app/main')
.then(null, console.error.bind(console));