Had success with Kotlin/WASM for browser. Trying...
# javascript
d
Had success with Kotlin/WASM for browser. Trying Kotlin/JS to understand this better. using 2.0.0 the docs at https://kotlinlang.org/docs/js-project-setup.html#webpack-bundling indicate that webpack v5 is the default. However the Gradle build keeps generating a v4 property
config.devServer = { ... "proxy": { ... } }
the v5 form uses
config.devServer = { ... "proxy": [ { ... }, ... ] }
what am I doing wrong. Tried the gradle.properties setting
kotlin.js.webpack.major.version=5
but that does not fix it.