Browse Source

Remove js target from common template since we don't want to make template app more complex right now

pull/987/head
Shagen Ogandzhanian 3 years ago
parent
commit
8be764c1b4
  1. 9
      templates/multiplatform-template/common/build.gradle.kts

9
templates/multiplatform-template/common/build.gradle.kts

@ -9,10 +9,6 @@ plugins {
kotlin {
android()
jvm("desktop")
js(IR) {
browser()
binaries.executable()
}
sourceSets {
named("commonMain") {
@ -33,11 +29,6 @@ kotlin {
api("androidx.core:core-ktx:1.6.0")
}
}
named("jsMain") {
dependencies {
api(compose.web.core)
}
}
}
}

Loading…
Cancel
Save