我有一个使用 CKeditor 的 rails 4 应用程序。在开发模式下它工作正常,但在生产中ckeditor不会出现,并且在文本区域的位置有一个空白区域。
根据日志,缺少以下文件:
ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/styles.js")
如果我预编译资产,我可以看到生成以下文件:
public/assets/ckeditor/styles-65fee53acf063b3d207bc00b4f7ce0d5.js
这是我的 application.rb 的 ckeditor 行:
config.assets.precompile += Ckeditor.assets
这似乎是 CKeditor 想要的文件,但它不是在寻找预编译的文件。我该如何解决?