mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:09:07 +08:00
29 lines
550 B
Plaintext
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"))
|
|
}
|