本文介绍了如何在 Rails 5 上禁用咖啡脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我开始了一个新的 rails 5.1.4
项目,但我忘记在 rails new
上添加 --skip-coffee
.p>
有没有办法在不创建新项目的情况下删除 coffeescript
依赖项?
解决方案
- 从
Gemfile
中删除或注释掉gem 'coffee-rails'
. - 将以
.js.coffee
结尾的 Javascript 文件更改为.js
. - 将
config.generators.javascript_engine = :js
添加到您的 应用程序.rb. - 确保使用
rake tmp:cache:clear
清除您的
tmp
缓存I started a new rails 5.1.4
project but I have forgotten to add --skip-coffee
on rails new
.
Is there a way to remove the coffeescript
dependency without creating a new project?.
解决方案
- Remove or comment out
gem 'coffee-rails'
fromGemfile
. - Change Javascript files that ends with
.js.coffee
to.js
. - Add
config.generators.javascript_engine = :js
to your application.rb. - Make sure your
tmp
cache is cleared withrake tmp:cache:clear
这篇关于如何在 Rails 5 上禁用咖啡脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!