如何禁用 Rails 3.1 Asset Pipeline?
如何暂时禁用Rails 3.1提供的资产管道功能? (我正在执行升级)
How can I temporarily disable the asset pipeline functionality that Rails 3.1 provides?
(I am performing an upgrade)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的
application.rb
中尝试一下try this in your
application.rb
将此行放入 application.rb
config.assets.enabled = false
您还可以在创建新应用程序时通过传递 —skip-sprockets 选项来禁用资产管道。
<代码>
Rails 新应用程序名称 --skip-sprockets
您可以将
--skip-assets
与generate
一起使用来跳过生成资产存根。请参阅:http://guides.rubyonrails.org/asset_pipeline.html#what-is-资产管道
Putting this line inside the application.rb
config.assets.enabled = false
You can also disable the asset pipeline while creating a new application by passing the —skip-sprockets option.
rails new appname --skip-sprockets
You can use
--skip-assets
withgenerate
to skip producing asset stubs.refer: http://guides.rubyonrails.org/asset_pipeline.html#what-is-the-asset-pipeline