If you use sbt-web combined with Scala.js and you use the following in your build.sbt
managedClasspath in Runtime += (packageBin in Assets).value
When you try to load the project in IntelliJ with this following line, IntelliJ tries to do a full optimized Scala.js build when you try to load the SBT project. Often this times out and causes the project to be unusable within Intellij.
I am not entirely sure if this is an issue with Scala.js or sbt-web. sbt-web is what requires you to put managedClasspath in Runtime += (packageBin in Assets).value inside your build.sbt, but I think this clashes with Scala.js
If you use
sbt-webcombined with Scala.js and you use the following in your build.sbtWhen you try to load the project in IntelliJ with this following line, IntelliJ tries to do a full optimized Scala.js build when you try to load the SBT project. Often this times out and causes the project to be unusable within Intellij.
I am not entirely sure if this is an issue with Scala.js or sbt-web. sbt-web is what requires you to put
managedClasspath in Runtime += (packageBin in Assets).valueinside your build.sbt, but I think this clashes with Scala.js