jdoneill
08/25/2021, 2:14 AMorg.gradle.api.GradleException: Please initialize the Kotlin/JS target in 'web (:web)'. Use:
kotlin {
js {
// To build distributions and run tests for browser or Node.js use one or both of:
browser()
nodejs()
}
}
andylamax
08/25/2021, 5:46 AMbuild.gradle.kts
on sub module ":web", looks like the target is not set therehfhbd
08/25/2021, 12:12 PMjdoneill
08/25/2021, 3:19 PMjs {
browser { }
}
then
js {
browser {
binaries.executable()
}
}
and
js {
browser ()
}
nothing workingjdoneill
08/26/2021, 2:43 AMjs(IR) {
browser { }
}
or
js(LEGACY) {
browser { }
}