I'm new with Kotlin Js and I'm facing a problem he...
# javascript
b
I'm new with Kotlin Js and I'm facing a problem here (probably it's a newbie mistake that I'm not seeing) I'm trying to import kotlin html dsl library with gradle but when I try to build, this error appears
Copy code
Module not found: Error: Can't resolve 'kotlinx-html-js' in '/home/bloder/KotlinJsProjects/bloder-polymer-playground/polymer-playground/build/js'
I've already tried to import kotlin-html-js in node dependencies but it's still occurring, I'm using kotlin front end plugin, and I'm importing the library like this
Copy code
dependencies {
    implementation "org.jetbrains.kotlinx:kotlinx-html-js:0.6.9"
}
fixed! I was creating kotlinFrontend block after dependencies block in my gradle file.