James Ward
02/10/2023, 4:35 AMwasmBrowserRun
hard codes a default browser exec of google-chrome-canary
?sdeleuze
02/10/2023, 5:17 AMbashor
02/10/2023, 3:08 PMbrowser {
commonWebpackConfig {
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).copy(
open = mapOf(
"app" to mapOf(
"name" to "google chrome", // "edge"
"arguments" to listOf("--js-flags=--experimental-wasm-gc")
)
),
)
}
}
Like here:
https://github.com/Kotlin/kotlin-wasm-examples/blob/main/browser-example/build.gradle.kts#L20-L27James Ward
02/10/2023, 4:16 PMgoogle-chrome
- I'll file an issue.