Is is correct that the kotlin { target { browser{}...
# multiplatform
r
Is is correct that the kotlin { target { browser{} } } thing (version 1.3.70) doesn't work with multiplatform?
i
You need to change
target
on
js
Copy code
kotlin {
    js {
        browser()
    }
}
r
Ok, I see thx