static/server/index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!doctype html> <html lang="en"> <body style="margin: 0px;"> <script type="module"> import init from './mygame.js' init().catch((error) => { if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) { throw error; } }); </script> </body> </html> |