My app's __root.tsx imports my CSS like below. Is this correct?
import "uno.css";
import "@/styles/global.css";
My CSS applies when running for dev, but not for production build, even though javascript and all routes work. The prod build's dist/_build/assets does contain a CSS file with expected file contents.
Do I need to manually add CSS to the document head element or something?