forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (88 loc) · 3.68 KB
/
index.html
File metadata and controls
96 lines (88 loc) · 3.68 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:type" content="website">
<meta property="og:author" content='https://ivesvh.com'>
<meta property="og:title" content="CodeSandbox">
<meta property="og:description" content="CodeSandbox is an online editor tailored for web applications.">
<meta property="og:image" content="https://codesandbox.io/static/img/banner.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:site" content="@CompuIves">
<meta property="twitter:creator" content='@CompuIves'>
<meta property="twitter:title" content="CodeSandbox Embed">
<meta property="twitter:description" content="An online editor tailored for web application development.">
<meta property="twitter:image:src" content="https://codesandbox.io/static/img/banner.png">
<meta property="twitter:image:width" content="1200">
<meta property="twitter:image:height" content="630">
<meta name="description" content="CodeSandbox is an online editor tailored for web applications.">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Source Code Pro:500" rel="stylesheet">
<link href="/static/fonts/inter/inter.css" rel="stylesheet">
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon.ico">
<title>Embed - CodeSandbox</title>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-T3L6RFK');
</script>
<!-- End Google Tag Manager -->
<script src="<%= webpackConfig.output.publicPath %>static/browserfs7/browserfs<%=process.env.NODE_ENV
=== 'development' ? '' : '.min'%>.js"
type="text/javascript"></script>
<script>
if (BrowserFS) {
window.process = {
env: {
VSCODE_DEV: false
},
nextTick: function(cb) {
return requestAnimationFrame(cb);
},
once: BrowserFS.BFSRequire('process').once,
removeListener: function () {}
};
window.Buffer = BrowserFS.BFSRequire('buffer').Buffer;
}
</script>
<!-- AMD Loader for Monaco -->
<script src="/public/14/vs/loader.js"></script>
<script>
window.require.config({
url:"/public/14/vs/loader.js",
paths:{vs:"/public/14/vs"}
});
</script>
<!-- {{SANDBOX_DATA}} -->
<style>
html, body {
/*
The overscroll-behavior CSS property sets what a
browser does when reaching the boundary of a
scrolling area.
We set it to null so that the browser gestures don't
override our scroll behavior
*/
overscroll-behavior-x: none;
}
</style>
</head>
<body style="margin: 0; padding: 0; background-color: #191d1f; overflow: hidden;">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T3L6RFK"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="root"></div>
</body>
</html>