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 { kotlin {
android() android()
jvm("desktop") jvm("desktop")
js(IR) {
browser()
binaries.executable()
}
sourceSets { sourceSets {
named("commonMain") { named("commonMain") {
@ -33,11 +29,6 @@ kotlin {
api("androidx.core:core-ktx:1.6.0") api("androidx.core:core-ktx:1.6.0")
} }
} }
named("jsMain") {
dependencies {
api(compose.web.core)
}
}
} }
} }

Loading…
Cancel
Save