Nicolas Lepage 01f151de18
⚗️
2019-11-27 12:41:40 +01:00

15 lines
352 B
JavaScript

addEventListener('activate', event => {
console.log('activate!')
event.waitUntil(clients.claim())
})
importScripts(
'https://cdn.jsdelivr.net/gh/nlepage/go-wasm-http-server@latest/lib/wasm_exec/wasm_exec.js',
'https://cdn.jsdelivr.net/gh/nlepage/go-wasm-http-server@latest/index.js',
)
wasmhttp.serve({
wasm: 'api.wasm',
base: '/api',
})