Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Vite in imba.io #249

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13
16
66 changes: 66 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>"Imba - The friendly full-stack language!"</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="Imba is a programming language for building web applications with insane performance. You can use it both for the server and client.">
<!-- # this is the documentation / content generated by npm run build-content
# loaders for asynchronously loading the monaco code editor -->

<script src="/monaco/min/vs/loader.js"></script>
<script>
require.config({ paths: { vs: "/monaco/min/vs" } });
window.loadMonaco = function (cb) { require(["vs/editor/editor.main"], cb) };
</script>
<link rel="apple-touch-icon" sizes="57x57" href="/images/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/images/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/images/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/apple-icon-152x152.png">
<link rel="icon" type="image/png" sizes="144x144" href="/images/android-icon-144x144.png">
<link rel="icon" type="image/png" sizes="192x192" href="/images/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="152x152" href="/images/android-icon-152x152.png">
<link rel="icon" type="image/png" sizes="36x36" href="/images/android-icon-36x36.png">
<link rel="icon" type="image/png" sizes="48x48" href="/images/android-icon-48x48.png">
<link rel="icon" type="image/png" sizes="72x72" href="/images/android-icon-72x72.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/android-icon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="64x64" href="/images/favicon-64x64.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/favicon-96x96.png">
<!-- <link rel="manifest" href="/manifest.json"/> -->
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/images/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff"><!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Imba - The friendly full-stack language">
<meta itemprop="description"
content="Imba is a programming language for building web applications with insane performance. You can use it both for the server and client.">
<meta itemprop="image" content="/images/social-card-preview.jpg"><!-- Facebook Meta Tags -->
<meta property="og:url" content="https://imba.io">
<meta property="og:type" content="website">
<meta property="og:title" content="Imba - The friendly full-stack language">
<meta property="og:description"
content="Imba is a programming language for building web applications with insane performance. You can use it both for the server and client.">
<meta property="og:image" content="/images/social-card-preview.jpg"><!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Imba - The friendly full-stack language">
<meta name="twitter:description"
content="Imba is a programming language for building web applications with insane performance. You can use it both for the server and client.">
<meta name="twitter:image" content="/images/social-card-preview.jpg"><!-- Work Sans font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@900&amp;family=Kalam:wght@400;700&amp;display=swap"
rel="stylesheet">
</head>

<body tabindex='-1'>
<script src="./data/reference.js" type="module"></script>
<script type="module" src="/src/main.js"></script>
</body>

</html>
Loading