在angular2中,在appmodule.ts中导入ngx-store时

时间:2017-12-05 09:58:42

标签: angular visual-studio-2015

无法加载资源:服务器响应状态为404(未找到) index.html:54错误:(SystemJS)XHR错误(404 Not Found)loading http://localhost:56455/src/ngx-store     错误:XHR错误(404 Not Found)loading http://localhost:56455/src/ngx-store         在XMLHttpRequest.wrapFn     从http://localhost:56455/src/ngx-store

加载http://localhost:56455/src/app/app.module.js为“ngx-store”时出错

1 个答案:

答案 0 :(得分:0)

很可能你没有正确配置systemjs以使用systemjs设置ngrx-store使用具有以下内容的配置:

System.config({
    packages: {

        '@ngrx/store': {
            main: 'dist/index.js',
            format: 'cjs'           
        },
        '@ngrx/devtools': {
            main: 'dist/index.js',
            format: 'cjs'
        } 
    },
    map: {
        '@ngrx': 'node_modules/@ngrx'
    }
});