PHondogo
11/12/2023, 11:03 PMArkadii Ivanov
11/12/2023, 11:48 PMplugins {
id("kotlin-multiplatform")
id("org.jetbrains.compose")
}
kotlin {
js {
browser()
binaries.executable()
}
}
kotlin {
sourceSets {
jsMain {
dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.material)
}
}
}
}
compose.experimental {
web.application {}
}
PHondogo
11/13/2023, 2:27 PM