CLOVIS
07/24/2024, 12:55 PM:jsBrowserProductionWebpack
task then got the files in build/dist/js/productionExecutable/
.
However, since 2.0.0, this is not generated anymore. Instead, I found build/kotlin-webpack/js/productionExecutable
, but that doesn't contain the index.html
file.
What changed? Where are the files generated now?
Gradle setup:
kotlin {
js(IR) {
browser()
binaries.executable()
}
val jsMain by sourceSets.getting {
dependencies {
implementation(projects.lazyLayouts)
}
}
}
There is no webpack.config.d folder or any other webpack-related config.jw
07/24/2024, 1:01 PMCLOVIS
07/24/2024, 1:03 PMdistribution
task?jw
07/24/2024, 1:03 PMCLOVIS
07/24/2024, 1:04 PMjsBrowserDistribution
, correct?CLOVIS
07/24/2024, 1:05 PMbuild/dist/js/productionExecutable/
, perfect, thanksCLOVIS
07/24/2024, 1:06 PMOliver.O
07/24/2024, 6:35 PM