mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-09 06:08:29 +00:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import init, { start } from '../pkg/index.js';
|
|
import 'regenerator-runtime/runtime.js'
|
|
import './workers-polyfill.js'
|
|
|
|
async function run() {
|
|
Error.stackTraceLimit = 20;
|
|
await init();
|
|
await start();
|
|
}
|
|
|
|
run();
|