This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
hey all, what do you use when you need to import css
from a module, e.g.
import "some-lib/lib/styles.css"
if I understand correctly, shadow-cljs doesn't support this directly. Is there a workaround?
Thanks!A few workarounds can include: • if you are using Sass, import them directly in your SCSS files • configure webpack with css-loader, style-loader, etc.
👍 1