@@ -17,14 +17,14 @@ Follow the [installation](https://github.com/DevExpress/devextreme-angular#insta
1717Modify the references in the index.html file as follows:
1818
1919``` html
20+ <!-- DevExtreme stylesheets -->
2021<link rel =" stylesheet" type =" text/css" href =" node_modules/devextreme/dist/css/dx.common.css" />
2122<link rel =" stylesheet" type =" text/css" href =" node_modules/devextreme/dist/css/dx.light.css" />
2223
2324<!-- Polyfill(s) for older browsers -->
2425<script src =" node_modules/core-js/client/shim.min.js" ></script >
2526
2627<script src =" node_modules/zone.js/dist/zone.js" ></script >
27- <script src =" node_modules/reflect-metadata/Reflect.js" ></script >
2828<script src =" node_modules/systemjs/dist/system.src.js" ></script >
2929
3030<script src =" systemjs.config.js" ></script >
@@ -45,7 +45,7 @@ Modify the 'systemjs.config.js' file as follows:
4545``` js
4646paths: {
4747 // paths serve as alias
48- ' npm:' : ' ../ node_modules/'
48+ ' npm:' : ' node_modules/'
4949},
5050map: {
5151 // our app is within the app folder
@@ -63,15 +63,14 @@ map: {
6363 ' devextreme' : ' npm:devextreme' , // <== add this line
6464 ' jquery' : ' npm:jquery/dist/jquery.min.js' , // <== add this line
6565 ' jszip' : ' npm:jszip/dist/jszip.min.js' , // <== add this line
66- ' devextreme-angular' : ' npm:devextreme-angular' , // <== add this line
66+ ' devextreme-angular' : ' npm:devextreme-angular' , // <== add this line
6767 // other libraries
6868 ' rxjs' : ' npm:rxjs' ,
69- ' angular2 -in-memory-web-api' : ' npm:angular2 -in-memory-web-api'
69+ ' angular -in-memory-web-api' : ' npm:angular -in-memory-web-api/bundles/in-memory-web-api.umd.js '
7070},
7171packages: {
72- ' app' : { main : ' main.js ' , defaultExtension: ' js' },
72+ ' app' : { defaultExtension: ' js' },
7373 ' rxjs' : { defaultExtension: ' js' },
74- ' angular2-in-memory-web-api' : { main: ' index.js' , defaultExtension: ' js' },
7574 ' devextreme-angular' : { main: ' index.js' , defaultExtension: ' js' }, // <== add this line
7675 ' devextreme' : { defaultExtension: ' js' } // <== add this line
7776}
0 commit comments