Yan Pujante
11/05/2020, 5:38 PM...
kotlin {
js(IR) {
browser {
binaries.executable()
webpackTask {
cssSupport.enabled = true
}
runTask {
cssSupport.enabled = true
}
}
}
}
My project includes a bunch of files that I would like to bundle into a zip file during the build and made available to both the run mode and prod mode (I am using jszip from kotlin to load the zip file but the zip file needs to be generated). Can somebody point me into what I should do to make this happen?adk
11/08/2020, 10:44 AM