How can I get bootstrap to work with my kotlin_js ...
# javascript
c
How can I get bootstrap to work with my kotlin_js project? I am trying to figure out how to include the Its CSS/SCSS in the main index.html file. What I have done so far Added the following dependencies to the
build.gradle.kts
Copy code
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
Copy code
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?