0

My issue is that when I, run 'play dist', unzip the dist and look through the jars in lib, I can see that my app/views/*.jade files are not getting included. How do I tell play to include these jade files as part of my views??

Thanks!

4

1 回答 1

0

在我的 Build.scala 中添加了以下内容:

unmanagedResourceDirectories in Compile <+= baseDirectory(_/"app/views")

这会将 app/views 的内容添加到类路径的根目录

于 2013-09-24T11:03:27.890 回答