|
4 | 4 | <head> |
5 | 5 | <meta charset="utf-8" /> |
6 | 6 |
|
7 | | - <link rel="icon" href="/favicon.ico" type="image/x-icon" /> |
8 | | - |
9 | 7 | <!-- Disable pinch zooming --> |
10 | 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> |
11 | 9 |
|
12 | | - <meta http-equiv="Content-Security-Policy" |
13 | | - content="default-src 'none'; img-src 'self' https: data: blob:; media-src 'none'; frame-src 'self' {{WEBVIEW_ENDPOINT}} https://*.vscode-webview-test.com; script-src 'self' https://az416426.vo.msecnd.net 'unsafe-eval' https:; style-src 'self' 'unsafe-inline'; connect-src 'self' ws: wss: https:; font-src 'self' blob:;"> |
| 10 | + <!-- Content Security Policy --> |
| 11 | + <meta |
| 12 | + http-equiv="Content-Security-Policy" |
| 13 | + content="default-src 'none'; img-src 'self' https: data: blob:; media-src 'none'; frame-src 'self' {{WEBVIEW_ENDPOINT}} https://*.vscode-webview-test.com; script-src 'self' https://az416426.vo.msecnd.net 'unsafe-eval' https:; style-src 'self' 'unsafe-inline'; connect-src 'self' ws: wss: https:; font-src 'self' blob:;" |
| 14 | + > |
14 | 15 |
|
| 16 | + <!-- Workbench Configuration --> |
15 | 17 | <meta id="vscode-workbench-web-configuration" data-settings="{{WORKBENCH_WEB_CONGIGURATION}}"> |
16 | 18 |
|
17 | | - <!-- Workaround to pass remote user data uri--> |
| 19 | + <!-- Workarounds/Hacks (remote user data uri, product configuration ) --> |
18 | 20 | <meta id="vscode-remote-user-data-uri" data-settings="{{REMOTE_USER_DATA_URI}}"> |
19 | | - |
20 | | - <!-- Workaround to pass product configuration--> |
21 | 21 | <meta id="vscode-remote-product-configuration" data-settings="{{PRODUCT_CONFIGURATION}}"> |
| 22 | + |
| 23 | + <!-- Workbench Icon/CSS --> |
| 24 | + <link rel="icon" href="/favicon.ico" type="image/x-icon" /> |
| 25 | + <link data-name="vs/workbench/workbench.web.api" rel="stylesheet" href="./static/out/vs/workbench/workbench.web.api.css"> |
22 | 26 | </head> |
23 | 27 |
|
24 | 28 | <body aria-label=""> |
25 | 29 | </body> |
26 | 30 |
|
27 | | - <!-- Require our AMD loader --> |
| 31 | + <!-- Startup (do not modify order of script tags!) --> |
28 | 32 | <script src="./static/out/vs/loader.js"></script> |
29 | | - |
30 | | - <!-- Startup via workbench.js --> |
| 33 | + <script src="./static/out/vs/workbench/workbench.web.api.nls.js"></script> |
31 | 34 | <script src="./static/out/vs/code/browser/workbench/workbench.js"></script> |
32 | 35 | </html> |
0 commit comments