Hello -- I'm an RWSDK newbie, following the Full Stack Tutorial for the structural pieces (just made an app that did some different functionality). I just ran my first release; it went thru, I found it on cloudflare and it's served on my custom domain, BUT with no style.css ; in fact I get a 404 response, saying that it can't find my styles.css.
Then, I updated my styles import in the Document.tsx to match the demo app GH: import styles from "./styles.css?url"; -- previously I had just passed the filepath into the <link> component directly. This worked fine locally but now the build is failing with...
error during build:
[@tailwindcss/vite:generate:build] Cannot create proxy with a non-object as target or handler
file: /Users/williamhbelew/Hacking/poeia/src/app/styles.css?transform-only
at new PartialEnvironment (file:///Users/williamhbelew/Hacking/poeia/node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected][email protected][email protected]/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js:13082:19)
Apologies if this is answered elsewhere, but I have followed to a letter the setup and deployment steps outlined in the tutorial, and am wary of changing my approach to getting styles in there before checking here. Thanks for reading!