a common reaction to this complicated js build tooling is going buildless, and instead of `import '/foo.css'` it's now recommended to write your css & html like:
return html`
<style>
div {
background: ${color};
}
</style>
<div>${content}<div>
` }
and folks, this is in many ways worse
I'm not going to explain to you why putting code in strings is bad. I detest how popular this pattern has become https://hachyderm.io/@mattly/113840282345132644