summaryrefslogtreecommitdiff
path: root/website/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'website/index.html')
-rw-r--r--website/index.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/website/index.html b/website/index.html
index 7cb8b0298..6ee68af2f 100644
--- a/website/index.html
+++ b/website/index.html
@@ -11,7 +11,10 @@
<div id="binary-size-chart"></div>
<script src="https://unpkg.com/d3@5.7.0/dist/d3.min.js"></script>
<script src="https://unpkg.com/c3@0.6.7/c3.min.js"></script>
- <script src="./app.js"></script>
+ <script type="module">
+ import { main } from "./app.js";
+ main();
+ </script>
</body>
</html>