使用 PlayFramework 2.3.1、sbt-web、Scala 2.11。
例如,如何将已编译资产的目标文件夹从“public”更改为“pub”?
使用 PlayFramework 2.3.1、sbt-web、Scala 2.11。
例如,如何将已编译资产的目标文件夹从“public”更改为“pub”?
您应该为此修改一对设置。例如,要将其设置为“pub”,您可以这样做:
import com.typesafe.sbt.web.Import.WebKeys.public // For Play 2.5.x
import com.typesafe.sbt.web.WebKeys.public // For Play 2.3.x
public in Assets := webTarget.value / "pub" / "main",
public in TestAssets := webTarget.value / "pub" / "test",