How am I supposed to import in my HTML the JS file...
# javascript
s
How am I supposed to import in my HTML the JS file generated in the JAR with Kotlin 1.3.50 and following
build.gradle.kts
?
Copy code
plugins {
    kotlin("js") version "1.3.50"
}

kotlin {
    target {
        browser()
    }
    sourceSets["main"].dependencies {
        implementation(kotlin("stdlib-js"))
    }
}

repositories {
    mavenCentral()
}