chore(frontend+infra): re-enable browser environment for Kotlin JS with NodeJs workaround

- Applied Root NodeJs plugin initialization to resolve Gradle 9/KMP race condition.
- Restored `browser {}` configuration in multiple frontend modules, with JS test tasks disabled to prevent redundant execution.
This commit is contained in:
2026-02-02 20:50:08 +01:00
parent 25f40567c7
commit 92cdd22f1f
10 changed files with 61 additions and 11 deletions
+6 -1
View File
@@ -7,7 +7,12 @@ kotlin {
jvm()
js(IR) {
binaries.library()
// browser {} block removed to fix "Plugin loaded multiple times" error.
// Re-enabled browser environment after Root NodeJs fix
browser {
testTask {
enabled = false
}
}
}
sourceSets {