为什么rails 5,当twitter-boostrap低于错误时
找不到或无法读取要导入的文件:bootstrap-sprockets。导轨 5
使用 boostrp 时在 c9.io 中出现错误
为什么rails 5,当twitter-boostrap低于错误时
找不到或无法读取要导入的文件:bootstrap-sprockets。导轨 5
使用 boostrp 时在 c9.io 中出现错误
如果您的 gemfile 中有gem 'bootstrap'
并且gem 'bootstrap-sass'
两者都有,请删除其中一个并运行bundle。
您的Application.js应如下所示:
//= require jquery
//= require bootstrap-sprockets
//= require jquery_ujs
//= require turbolinks
//= require_tree .
Application.scss应该有:
@import "bootstrap-sprockets";
@import "bootstrap";
不要忘记重新启动服务器。
如果它仍然不起作用,请使用错误日志、gemfile 和其他相关代码更新您的问题。