You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it and then open it at localhost:5553. But When I package it with
sbt debian:package-bin
and open localhost:5553 I see that most of webjars as well as scalajs files are not loaded at all. With other packager plugins I had the same problem =( I have the same problem with Universal packaging.
The text was updated successfully, but these errors were encountered:
(fullClasspath in Runtime) += (packageBin in previewJVM in Assets).value,
to
(managedClasspath in Runtime) += (packageBin in previewJVM in Assets).value,
made it work. The problem is that I have no clue why=) I used fullClasspath because IntellijIDEA guys adviced me to do so (as with managedClasspath idea tried to compile whole project, not only sbt but the whole one and failed to open it if there was at least one error in the code)
My application (preview root project of https://github.com/antonkulaga/scala-js-binding ) works fine when I
it and then open it at localhost:5553. But When I package it with
and open localhost:5553 I see that most of webjars as well as scalajs files are not loaded at all. With other packager plugins I had the same problem =( I have the same problem with Universal packaging.
The text was updated successfully, but these errors were encountered: