Hi, Is there somewhere some samples of Kotlin js w...
# javascript
g
Hi, Is there somewhere some samples of Kotlin js with advanced webpack config (Sass, …)?
t
Some loaders configuration you can find here
👍 1
g
I created a small project without any plugins: https://github.com/gzoritchak/kotlin-js-sass
t
Copy code
dependencies {
    implementation(devNpm("node-sass", "^4.12.0"))
    implementation(devNpm("sass-loader", "^7.1.0"))
}
?
Also
css-loader
and
style-loader
not declared in dependencies 😞
g
@turansky I don’t understand your messages.
t
You can add NMP libs as usual dependencies
Package.json modification not required
👍 1
g
Thanks, fixed.
🔥 1