gpt4 book ai didi

ruby-on-rails - 为了安装 bootstrap-sass gem,我是否从 application.scss 中删除 *= require_self 或将其替换为 import '@require_self'

转载 作者:行者123 更新时间:2023-12-04 07:39:32 26 4
gpt4 key购买 nike

我正在安装 bootstrap-sass gem 和与 application.scss 相关的这一行让我感到困惑。

'然后,删除所有 *= require_self 和 *= require_tree 。 sass 文件中的语句。相反,使用 @import 导入 Sass 文件。

我是否删除 *= require_self*= require_tree .并将它们替换为 import '@require_self'import '@require_tree .'或者只是删除它们。

也适用于 application.scss 中的任何其他导入文件,例如

 *= require dataTables/jquery.dataTables
*= require froala/froala_editor.min.css

我应该把它们改成
 @import 'dataTables/jquery.dataTables'
@import 'froala/froala_editor.min.css'

只是很困惑,想确认一下在这里做什么。

最佳答案

使用 bootstrap-sass 时,从您的 application.scss 中删除所有内容而是添加以下内容:

#"bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";

如果你想加载额外的 scss/sass 文件,你可以 @import 他们到 application.scss如果你想加载 css 文件,你可以 *= 需要 他们喜欢以下内容:
/*
*= require_self
*= require your_css_file
*/
@import "bootstrap-sprockets";
@import "bootstrap";

关于ruby-on-rails - 为了安装 bootstrap-sass gem,我是否从 application.scss 中删除 *= require_self 或将其替换为 import '@require_self',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36074921/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com