about summary refs log tree commit diff stats
path: root/js/scripting-lang/web/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/web/index.html')
-rw-r--r--js/scripting-lang/web/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/scripting-lang/web/index.html b/js/scripting-lang/web/index.html
new file mode 100644
index 0000000..1651f44
--- /dev/null
+++ b/js/scripting-lang/web/index.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Starter Kit</title>
+  <link rel="stylesheet" href="style.css">
+</head>
+<body>
+  <main>
+    <div id="app"></div>
+  </main>
+  <script type="module" src="src/app.js"></script>
+  <script>
+    // Load dev tools test script if in dev mode
+    if (window.location.search.includes('dev=1')) {
+      const script = document.createElement('script');
+      script.src = 'test-dev-tools.js';
+      document.head.appendChild(script);
+    }
+  </script>
+</body>
+</html> 
\ No newline at end of file