mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-03 04:56:44 +01:00
65 lines
2.1 KiB
HTML
65 lines
2.1 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">
|
|
<link rel="apple-touch-icon" href="/code-192.png" />
|
|
|
|
<!-- 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}}">
|
|
|
|
<!-- Workbench Auth Session -->
|
|
<meta id="vscode-workbench-auth-session" data-settings="{{WORKBENCH_AUTH_SESSION}}">
|
|
|
|
<!-- Builtin Extensions (running out of sources) -->
|
|
<meta id="vscode-workbench-builtin-extensions" data-settings="{{WORKBENCH_BUILTIN_EXTENSIONS}}">
|
|
|
|
<!-- Workbench Icon/Manifest/CSS -->
|
|
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
|
|
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials" />
|
|
</head>
|
|
|
|
<body aria-label="">
|
|
</body>
|
|
|
|
<!-- Startup (do not modify order of script tags!) -->
|
|
<script src="./static/out/vs/loader.js"></script>
|
|
<script src="./static/out/vs/webPackagePaths.js"></script>
|
|
<script>
|
|
Object.keys(self.webPackagePaths).map(function (key, index) {
|
|
self.webPackagePaths[key] = `${window.location.origin}/static/remote/web/node_modules/${key}/${self.webPackagePaths[key]}`;
|
|
});
|
|
require.config({
|
|
baseUrl: `${window.location.origin}/static/out`,
|
|
recordStats: true,
|
|
trustedTypesPolicy: window.trustedTypes?.createPolicy('amdLoader', {
|
|
createScriptURL(value) {
|
|
if(value.startsWith(window.location.origin)) {
|
|
return value;
|
|
}
|
|
throw new Error(`Invalid script url: ${value}`)
|
|
}
|
|
}),
|
|
paths: self.webPackagePaths
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
performance.mark('code/willLoadWorkbenchMain');
|
|
</script>
|
|
<script>
|
|
require(['vs/code/browser/workbench/workbench'], function() {});
|
|
</script>
|
|
</html>
|