noVNC/core/wasm/index.js

7 lines
249 B
JavaScript

// Note that a dynamic `import` statement here is required due to
// webpack/webpack#6615, but in theory `import { greet } from './hello_world';`
// will work here one day as well!
const rust = import('./novnc');
rust.then(m => m.greet('World!'));