From a2e3441e6937f1769fed3e16a5f7f7135482cf97 Mon Sep 17 00:00:00 2001 From: Akshay Date: Sun, 19 Sep 2021 09:45:06 +0530 Subject: init --- www/bootstrap.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 www/bootstrap.js (limited to 'www/bootstrap.js') diff --git a/www/bootstrap.js b/www/bootstrap.js new file mode 100644 index 0000000..7934d62 --- /dev/null +++ b/www/bootstrap.js @@ -0,0 +1,5 @@ +// A dependency graph that contains any wasm must all be imported +// asynchronously. This `bootstrap.js` file does the single async import, so +// that no one else needs to worry about it again. +import("./index.js") + .catch(e => console.error("Error importing `index.js`:", e)); -- cgit v1.2.3