When building my project using the browserDistribution
Gradle task, Kotlin/JS puts the output which has been processed by webpack into /build/distributions/myProject.js
.
Instead, I would like my output to go into a folder called /output
in my project's root directory.
How can I change the path where my distributions are put after running through webpack?
I'm using the Gradle Kotlin DSL if that helps.