mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 06:21:50 +01:00
29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<!-- Disable pinch zooming -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
|
|
<meta http-equiv="Content-Security-Policy"
|
|
content="default-src 'none'; img-src 'self' https: data: blob: vscode-remote:; media-src 'none'; child-src 'self' {{WEBVIEW_ENDPOINT}}; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; connect-src 'self' https:; font-src 'self' blob: vscode-remote:;">
|
|
|
|
<meta id="vscode-workbench-web-configuration" data-settings="{{WORKBENCH_WEB_CONGIGURATION}}">
|
|
</head>
|
|
|
|
<body class="vs-dark" aria-label="">
|
|
</body>
|
|
|
|
<!-- Require our AMD loader -->
|
|
<script src="./out/vs/loader.js"></script>
|
|
|
|
<!-- Window Configuration from Server -->
|
|
<script src="./out/vs/web-configuration-init.js"></script>
|
|
|
|
<!-- Startup via workbench.js -->
|
|
<script src="./out/vs/code/browser/workbench/workbench.js"></script>
|
|
|
|
</html> |