ruby-on-rails – 在Rails中禁用资产预编译功能

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在Rails中禁用资产预编译功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在rails中禁用资产预编译功能.
我正在使用用户可以下载代码的应用程序,我想避免更改下载的html文件中的css和js文件名称 – 以便用户可以运行index.html并查看所有内容.

这是应用程序:
http://impress-builder.herokuapp.com/

解决方法

看看 The Assets Pipeline指南.

The asset pipeline is enabled by default. It can be disabled in
config/application.rb by putting this line inside the application
class definition:

config.assets.enabled = false
原文链接:https://www.f2er.com/ruby/266850.html

猜你在找的Ruby相关文章