phantasmal-world/web/build.gradle.kts
2020-10-10 23:48:38 +02:00

29 lines
550 B
Plaintext

plugins {
kotlin("js")
}
kotlin {
js {
browser {
runTask {
devServer = devServer!!.copy(
open = false,
port = 1623
)
}
}
binaries.executable()
}
}
val kotlinLoggingVersion: String by project.extra
dependencies {
implementation(project(":lib"))
implementation(project(":webui"))
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
testImplementation(kotlin("test-js"))
}