Files
wehub-resource-sync 70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:11 +08:00

60 lines
1.5 KiB
HTML

<!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
<!doctype html>
<html>
<head>
<script>
performance.mark("code/didStartRenderer");
</script>
<meta charset="utf-8" />
<!-- Mobile tweaks -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Code" />
<!-- Disable pinch zooming -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
/>
<!-- Workbench Configuration -->
<meta
id="vscode-workbench-web-configuration"
data-settings="{{WORKBENCH_WEB_CONFIGURATION}}"
/>
<!-- Allowed parent origins for postMessage validation -->
<meta
id="vscode-allowed-parent-origins"
data-origins="{{ALLOWED_PARENT_ORIGINS}}"
/>
<link
rel="stylesheet"
href="{{WORKBENCH_WEB_BASE_URL}}/out/vs/workbench/workbench.web.main.css"
/>
</head>
<body aria-label=""></body>
<!-- Startup (do not modify order of script tags!) -->
<script>
const baseUrl = new URL(
"{{WORKBENCH_WEB_BASE_URL}}",
window.location.origin
).toString();
globalThis._VSCODE_FILE_ROOT = baseUrl + "/out/";
</script>
<script>
performance.mark("code/willLoadWorkbenchMain");
</script>
<!-- always ensure built in english NLS messages -->
<script
type="module"
src="{{WORKBENCH_WEB_BASE_URL}}/out/nls.messages.js"
></script>
<script type="module" src="{{WORKBENCH_WEB_BASE_URL}}/workbench.js"></script>
</html>