If I put a client-side <script> in a component (that isn't is;inline), Astro converts it to a <script type="module" src="path/to/some.js">.
But if I put a <style> in that component -- or even if I put an import in the frontmatter -- Astro inlines the CSS. Is there a way to tell Astro not to inline it? That is, to bundle it and reference it via a <link> tag instead?
Or do I have to manage my own PostCSS processor and have it emit compiled CSS to dist/public/?