Hi, I just started a multiplatform project where "...
# javascript
r
Hi, I just started a multiplatform project where "domain" is the common Kotlin code, and I created another Gradle subproject for JS. But the build fails with:
project ':domain' is not configured for JS usage
Any idea what is wrong? For the JVM subproject I already got it working
When printing the targets of the common project:
targets: [js, jvm, metadata]
t
You need specify JS platform in common
👍 1
r
OMG, didn't see that one coming. Thnx Victor!
😉 1