mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
24 lines
359 B
Kotlin
24 lines
359 B
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
id("org.jetbrains.compose")
|
|
}
|
|
|
|
kotlin {
|
|
js(IR) {
|
|
browser()
|
|
binaries.executable()
|
|
}
|
|
sourceSets {
|
|
val jsMain by getting {
|
|
dependencies {
|
|
implementation(project(":shared"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
compose.experimental {
|
|
web.application {}
|
|
}
|
|
|