Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 python webassets 库中使用 pyscss 编译器,webassets 调试配置全部设置为 true。但是当我对 scss 文件进行更改并重新加载包含生成的 css 文件的页面时,我看到 css 文件没有重新生成并且不包括我的更改。为什么会这样?
弄清楚了。Webassets 不会使用@import. 唯一的解决方案是如果您对包含的文件进行更改,则始终对包含的 scss 文件进行更改。
@import
depends='*.scss'按照 GitHub 上此问题中的说明使用。
depends='*.scss'