如何在生产中使用config.assets.precompile只包含“lib / assets / javascripts”,“lib / assets / stylesheets”,“vendor / assets / javascripts”和“vendor / assets / stylesheets”中的文件?
基本上像:
config.assets.precompile += %w( pagespecific.js anotherpage.js )
但是用于自动将特定目录中的文件包含在“app / assets / javascripts”或“app / assets / stylesheets”中.
config.assets.precompile += ['pages/*.js']
解决方法
你可以这样写:
config.assets.precompile += ['directory/*']