diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-09-25 00:31:14 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-24 11:31:14 -0400 |
| commit | 17a7b03d1b86b3519e611aa855f561352075a954 (patch) | |
| tree | 26b64f6bfd13e2d9c6ee013b5e0c2b32a48fb78f /website/index.html | |
| parent | c124db4701c21ce179c0f2527cf6b8a5413910b9 (diff) | |
Start testing website (#813)
Diffstat (limited to 'website/index.html')
| -rw-r--r-- | website/index.html | 5 |
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> |
