Files
fluxscape/packages/noodl-editor/src/editor/index.html
Eric Tuvesson eb71536cb0 chore: Update branding info (#31)
* fix: branding info for package.json

* fix: updated package jsons with updated contact & author info

---------

Co-authored-by: alan-x-n <x.alanan.x@gmail.com>
2024-06-02 17:43:03 +02:00

29 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Fluxscape</title>
<link href="../assets/lib/fontawesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="../assets/css/style.css" rel="stylesheet" />
<!-- Libs that don't have npm packaged -->
<script type="text/javascript" src="../assets/lib/jquery-min.js"></script>
<script type="text/javascript" src="../assets/lib/jquery.autosize.min.js"></script>
<link rel="preload" href="../assets/Inter/Inter-Light.ttf" as="font" />
<link rel="preload" href="../assets/Inter/Inter-Regular.ttf" as="font" />
<link rel="preload" href="../assets/Inter/Inter-Medium.ttf" as="font" />
<link rel="preload" href="../assets/Inter/Inter-Bold.ttf" as="font" />
<link rel="preload" href="../assets/Inter/Inter-SemiBold.ttf" as="font" />
<script>
const path = process.env.devMode !== 'yes' ? '.' : 'http://localhost:8080/src/editor';
document.write(`<script defer src="${path}/index.bundle.js"><\/script>`);
</script>
</head>
<body>
<div id="root" style="position: relative; width: 100vw; height: 100vh; overflow: hidden"></div>
</body>
</html>