bootstrap.js 279 B

12345
  1. // A dependency graph that contains any wasm must all be imported
  2. // asynchronously. This `bootstrap.js` file does the single async import, so
  3. // that no one else needs to worry about it again.
  4. import("./index.js")
  5. .catch(e => console.error("Error importing `index.js`:", e));