Kite Config Web Extension
Browser Kotlin/JS options, inside kiteConfig { web { ... } }.
kiteConfig {
web {
ioWorker {
targets("js")
}
}
}Content copied to clipboard
Web here means the browser and nothing else. Node.js-only targets and wasmJs are out of scope, and none of this is Dispatchers.IO.
The block itself holds no settings. It is the address where browser features live, and ioWorker is the only tenant today.
| Target kind | Supported |
|---|---|
Kotlin/JS with browser() | yes |
Kotlin/JS with nodejs() only | no, the generated code needs Blob and Worker |
wasmJs | no |
See also
for the only feature this block currently holds.