diff options
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/client/index.html b/client/index.html index db4b76613..bc750dde7 100644 --- a/client/index.html +++ b/client/index.html | |||
@@ -7,27 +7,27 @@ | |||
7 | <meta charset="UTF-8"> | 7 | <meta charset="UTF-8"> |
8 | <meta name="viewport" content="width=device-width, initial-scale=1"> | 8 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
9 | 9 | ||
10 | <link rel="stylesheet" href="/app/stylesheets/index.css"> | 10 | <link rel="stylesheet" href="client/stylesheets/index.css"> |
11 | 11 | ||
12 | <!-- 1. Load libraries --> | 12 | <!-- 1. Load libraries --> |
13 | <!-- IE required polyfills, in this exact order --> | 13 | <!-- IE required polyfills, in this exact order --> |
14 | <script src="/app/node_modules/es6-shim/es6-shim.min.js"></script> | 14 | <script src="client/node_modules/es6-shim/es6-shim.min.js"></script> |
15 | <script src="/app/node_modules/zone.js/dist/zone.js"></script> | 15 | <script src="client/node_modules/zone.js/dist/zone.js"></script> |
16 | <script src="/app/node_modules/reflect-metadata/Reflect.js"></script> | 16 | <script src="client/node_modules/reflect-metadata/Reflect.js"></script> |
17 | <script src="/app/node_modules/systemjs/dist/system.src.js"></script> | 17 | <script src="client/node_modules/systemjs/dist/system.src.js"></script> |
18 | 18 | ||
19 | <script src="/app/node_modules/jquery/dist/jquery.js"></script> | 19 | <script src="client/node_modules/jquery/dist/jquery.js"></script> |
20 | <script src="/app/node_modules/jquery.ui.widget/jquery.ui.widget.js"></script> | 20 | <script src="client/node_modules/jquery.ui.widget/jquery.ui.widget.js"></script> |
21 | <script src="/app/node_modules/blueimp-file-upload/js/jquery.fileupload.js"></script> | 21 | <script src="client/node_modules/blueimp-file-upload/js/jquery.fileupload.js"></script> |
22 | 22 | ||
23 | <script src="/app/node_modules/webtorrent/webtorrent.min.js"></script> | 23 | <script src="client/node_modules/webtorrent/webtorrent.min.js"></script> |
24 | 24 | ||
25 | <script src="/app/node_modules/ng2-bootstrap/bundles/ng2-bootstrap.min.js"></script> | 25 | <script src="client/node_modules/ng2-bootstrap/bundles/ng2-bootstrap.min.js"></script> |
26 | 26 | ||
27 | <!-- 2. Configure SystemJS --> | 27 | <!-- 2. Configure SystemJS --> |
28 | <script src="/app/systemjs.config.js"></script> | 28 | <script src="client/systemjs.config.js"></script> |
29 | <script> | 29 | <script> |
30 | System.import('app').catch(function(err){ console.error(err); }); | 30 | System.import('client').catch(function(err){ console.error(err); }); |
31 | </script> | 31 | </script> |
32 | </head> | 32 | </head> |
33 | 33 | ||