Cru
04/04/2023, 9:37 AMbuild.gradle.kts
implementation("org.jetbrains.kotlin-wrappers:kotlin-emotion:11.10.6-pre.529")
implementation(npm("bootstrap", "5.3.0-alpha3"))
implementation(npm("@popperjs/core", "2.11.7"))
Used the following webpack configuration
kotlin {
js(IR) {
binaries.executable()
browser {
commonWebpackConfig {
cssSupport {
enabled.set(true)
mode.set("extract")
}
}
}
}
}
How can I get the output html file to include the css classes?
Is there a way to customize which ones to be included?