-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to pipe a css <link> include into index.html? #55
Comments
currently there's not, but we could totally add one - |
From IRC just now:
Thoughts, other users of bankai? /cc @marionebl |
I'd vote for keeping |
The main usecase is really to use normalize or bootstrap global _.css_ files without having to choose a css-in-js approach at all, just load those files from a cacheable cdn and not embed them in the js bundle.
|
@fczuardi you can do: const css = require('sheetify')
css('bootstrap') and you should be good. |
if someone wants to use an external stylesheet they can do: const css = require('sheetify')
css('./my-local-stylesheet.css') And it'll just work. Marking as resolved and closing |
Budo lets you use
--css styles.css
to pipe in a stylesheet for those not bought into the CSS-in-JS idea. Is there a way to do this with bankai?The text was updated successfully, but these errors were encountered: