we have solved this. it seems to be a bug where we...
# gradle
s
we have solved this. it seems to be a bug where we are calling the JS IR compiler
Copy code
kotlin {
+  org.jetbrains.kotlin.gradle.plugin.VariantImplementationFactories.getProvider(project)
   js(IR) {
     browser()
   }
inserting that line above the IR compiler config fixes it, in case anybody else runs into this. will file on youtrack 🙂
😮 2