编译时临时包含一个sass文件

发布于 2024-12-18 11:44:24 字数 235 浏览 0 评论 0原文

我的应用程序中的所有 sass 文件都被编译成一个大的 css 文件,但它变得相当臃肿。为了监视膨胀的来源,我编写了一个批处理文件来遍历每个单独的 sass 文件并将其编译为单独的样式表。问题是每个样式表都依赖于一个特定的样式表 - _mixins_and_vars.scss - 它只在我的总体 styles.scss 样式表中包含一次,并且在其他 sass 文件中根本没有引用。

有没有办法在编译运行时临时导入额外的 sass 样式表?

All the sass files in my application are compiled into one big css file, but it's become rather bloated. In order to monitor where the bloat is coming from I've written a batch file to go through each individual sass file and compile it as a separate stylesheet. The problem is that each stylesheet is dependent on one in particular one - _mixins_and_vars.scss - which is only included once in my over-arching styles.scss stylesheet, and not referenced at all in the other sass files.

Is there a way I can temporarily import extra sass stylesheets while compilation is running?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿挽旧人 2024-12-25 11:44:24

这里有一个建议:在批处理脚本中,

  • 将对 _mixins_and_vars.scss 的引用插入到目标文件
  • 编译中,以
  • 删除引用
  • 利润!

:-)

Here's a suggestion: in your batch script,

  • insert reference to _mixins_and_vars.scss into your target file
  • compile that
  • remove reference
  • PROFIT!

:-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文