Hi, i'm trying to run a really basic kotlin js app...
# announcements
a
Hi, i'm trying to run a really basic kotlin js app in the browser using the newest kotlin-js gradle plugin, but instead the webpack server is loading an html page that says,
Cannot GET /
. Has anyone had this same problem, or found a solution? This is my `build.gradle.kts`:
Copy code
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:
Copy code
fun main() {
    println("Hello world")
}