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

This commit is contained in:
Shagen Ogandzhanian
2021-08-03 14:38:40 +02:00
parent 656592124a
commit 8be764c1b4

View File

@@ -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)
}
}
}
}