I get this build error: `Cannot resolve external d...
# javascript
d
I get this build error:
Cannot resolve external dependency org.jetbrains.kotlin:kotlin-stdlib-js:1.4.10 because no repositories are defined.
In my gradle.build.kts file, I actually have not even specified the version:
Copy code
implementation(kotlin("stdlib-js"))
how can I fix this issue?
t
You need repos
d
you are right! I didn’t have specified any repository in the gradle file! thanks