-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 984 Bytes
/
index.html
File metadata and controls
40 lines (36 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>CodeFast</title>
</head>
<body>
<div id="root">
<style>
body {
background-color: #1e1e1e;
}
#root {
font-size: 14px;
font-family: Menlo, Monaco, 'Courier New', monospace;
text-align: center;
position: absolute;
top: 50%;
width: 100%;
color: white;
}
</style>
Loading...
</div>
<script type="text/javascript" src="jspm_packages/npm/[email protected]/min/vs/loader.js">
</script>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
require.config({ paths: { 'vs': 'jspm_packages/npm/[email protected]/min/vs' }});
require(['vs/editor/editor.main'], function() {
System.import('index.js');
});
</script>
</body>
</html>