Aidan Heller
08/29/2019, 3:11 AMCannot GET /
. Has anyone had this same problem, or found a solution? This is my `build.gradle.kts`:
plugins {
id("org.jetbrains.kotlin.js") version "1.3.50"
}
repositories {
mavenLocal()
jcenter()
}
dependencies {
implementation(kotlin("stdlib-js"))
}
kotlin.target.browser()
And here is my app:
fun main() {
println("Hello world")
}