We have conf directory in our project which is fine, but one of the new components requires its own config to be placed into config directory and w
conf
config
This is what I added to my Build.scala to finally solve the issue:
mappings in Universal ++= (baseDirectory.value / "config" * "*" get) map (x => x -> ("config/" + x.getName)),