I have two multiplatform projects, one is `:rest:m...
# javascript
p
I have two multiplatform projects, one is
:rest:model
and the other one
:domain:model
I depend on both in a certain third Kotlin/JS project, and getting an error
duplicate target file will be created
from
processDceKotlinJs
. One of the solutions seems to be setting different names for JS bundles (like
rest-model
and
domain-model
). How can I customize the bundle names? I’m looking around Gradle DSL
kotlin { js { … } }
but so far didn’t find it
1
t
You can use
moduleName
to configure bundle name
p
works, thanks!