我的 SCSS 未加载。有什么想法吗?我已按照核心中的聊天插件设置了我的文件:https://github.com/discourse/discourse/tree/47248573feb648364833254396892bedf83b7166/plugins/chat。
我在 plugins.rb 中有:
register_asset "stylesheets/common/index.scss"
在 assets/stylesheets/common/index.scss 中:
@import "common";
在 assets/stylesheets/common/common.scss 中:
body:has(#print-root) {
header,
.avatar,
.sidebar-wrapper {
all: unset; // all: unset 可能会有点过于激进
display: none !important;
}
}