Skip to content

Commit ffe18eb

Browse files
committed
Fixing references to node_modules files.
1 parent 4102ede commit ffe18eb

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/system.config.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
System.config({
44
paths: {
5-
'npm:': 'node_modules/'
5+
'npm:': 'vendor/'
66
},
77
map: {
88
'app': 'app',
9-
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
10-
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
11-
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
12-
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
13-
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
14-
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
15-
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
16-
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
17-
'rxjs': 'vendor/rxjs',
18-
'lodash': 'vendor/lodash/lodash.js',
19-
'redux': 'vendor/redux/redux.js',
20-
'redux-thunk': 'vendor/redux-thunk/index.js'
9+
'@angular/core': 'npm:angular/core/bundles/core.umd.js',
10+
'@angular/common': 'npm:angular/common/bundles/common.umd.js',
11+
'@angular/compiler': 'npm:angular/compiler/bundles/compiler.umd.js',
12+
'@angular/platform-browser': 'npm:angular/platform-browser/bundles/platform-browser.umd.js',
13+
'@angular/platform-browser-dynamic': 'npm:angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
14+
'@angular/http': 'npm:angular/http/bundles/http.umd.js',
15+
'@angular/router': 'npm:angular/router/bundles/router.umd.js',
16+
'@angular/forms': 'npm:angular/forms/bundles/forms.umd.js',
17+
'rxjs': 'npm:rxjs',
18+
'lodash': 'npm:lodash/lodash.js',
19+
'redux': 'npm:redux/redux.js',
20+
'redux-thunk': 'npm:redux-thunk/index.js'
2121
},
2222
packages: {
2323
app: {

0 commit comments

Comments
 (0)