mirror of
https://github.com/fluxscape/fluxscape.git
synced 2026-01-12 15:22:54 +01:00
Initial commit
Co-Authored-By: Eric Tuvesson <eric.tuvesson@gmail.com> Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com> Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com> Co-Authored-By: Anders Larsson <64838990+anders-topp@users.noreply.github.com> Co-Authored-By: Johan <4934465+joolsus@users.noreply.github.com> Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com> Co-Authored-By: victoratndl <99176179+victoratndl@users.noreply.github.com>
This commit is contained in:
28
packages/noodl-editor/src/editor/index.html
Normal file
28
packages/noodl-editor/src/editor/index.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Noodl</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>
|
||||
Reference in New Issue
Block a user