I’m having brain fog and not sure how to do this: is there a way to simply import a CSS file’s contents as a string in a JS module that I can use in an injected <style> tag, and have it work with #Browserify and #Babel and such?
This is making node/some part of the process unhappy:
```js
const foo = import(“../assets/bar.css”);
blah.textContent = foo;
```