|
8 | 8 | <meta name="mobile-web-app-capable" content="yes" /> |
9 | 9 | <meta name="apple-mobile-web-app-capable" content="yes" /> |
10 | 10 | <meta name="apple-mobile-web-app-title" content="Code" /> |
11 | | - <link rel="apple-touch-icon" href="vscode-web/code-192.png" /> |
| 11 | + <link rel="apple-touch-icon" href="vscode/code-192.png" /> |
12 | 12 |
|
13 | 13 | <!-- Disable pinch zooming --> |
14 | 14 | <meta |
|
17 | 17 | /> |
18 | 18 |
|
19 | 19 | <!-- Workbench Icon/Manifest/CSS --> |
20 | | - <link rel="icon" href="vscode-web/favicon.ico" type="image/x-icon" /> |
21 | | - <link rel="manifest" href="vscode-web/manifest.json" /> |
| 20 | + <link rel="icon" href="vscode/favicon.ico" type="image/x-icon" /> |
| 21 | + <link rel="manifest" href="vscode/manifest.json" /> |
22 | 22 | <link |
23 | 23 | data-name="vs/workbench/workbench.web.main" |
24 | 24 | rel="stylesheet" |
25 | | - href="vscode-web/static/out/vs/workbench/workbench.web.main.css" |
| 25 | + href="vscode/static/out/vs/workbench/workbench.web.main.css" |
26 | 26 | /> |
27 | 27 | </head> |
28 | 28 |
|
29 | 29 | <body aria-label=""></body> |
30 | 30 |
|
31 | 31 | <!-- Startup (do not modify order of script tags!) --> |
32 | | - <script src="vscode-web/static/out/vs/loader.js"></script> |
33 | | - <script src="vscode-web/static/out/vs/webPackagePaths.js"></script> |
| 32 | + <script src="vscode/static/out/vs/loader.js"></script> |
| 33 | + <script src="vscode/static/out/vs/webPackagePaths.js"></script> |
34 | 34 | <script> |
35 | 35 | Object.keys(self.webPackagePaths).map(function (key, index) { |
36 | 36 | self.webPackagePaths[ |
37 | 37 | key |
38 | | - ] = `${window.location.origin}/web/vscode-web/static/node_modules/${key}/${self.webPackagePaths[key]}`; |
| 38 | + ] = `${window.location.origin}/web/vscode/static/node_modules/${key}/${self.webPackagePaths[key]}`; |
39 | 39 | }); |
40 | 40 | require.config({ |
41 | | - baseUrl: `${window.location.origin}/web/vscode-web/static/out`, |
| 41 | + baseUrl: `${window.location.origin}/web/vscode/static/out`, |
42 | 42 | recordStats: true, |
43 | 43 | trustedTypesPolicy: window.trustedTypes?.createPolicy("amdLoader", { |
44 | 44 | createScriptURL(value) { |
|
48 | 48 | paths: self.webPackagePaths, |
49 | 49 | }); |
50 | 50 | </script> |
51 | | - <script src="vscode-web/static/out/nls.messages.js"></script> |
52 | | - <script src="vscode-web/static/out/vs/workbench/workbench.web.main.js"></script> |
53 | | - <script src="vscode-web/static/out/vs/code/browser/workbench/workbench.js"></script> |
| 51 | + <script src="vscode/static/out/nls.messages.js"></script> |
| 52 | + <script src="vscode/static/out/vs/workbench/workbench.web.main.js"></script> |
| 53 | + <script src="vscode/static/out/vs/code/browser/workbench/workbench.js"></script> |
54 | 54 | </html> |
0 commit comments