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 -2
View File
@@ -15,8 +15,12 @@ kotlin {
js {
binaries.library()
// browser {} block is intentionally removed to prevent "Plugin loaded multiple times" error.
// The warning "JS Environment Not Selected" is acceptable for now.
// Re-enabled browser environment after Root NodeJs fix
browser {
testTask {
enabled = false
}
}
}
sourceSets {