I hope it's OK to ask this here, as I've looked around and not found anything solid on this. I've just tried following the Payload Website Template Quick Start and created a new app with
pnpx create-payload-app panda-payload -t website
pnpm install
The install says everything is up to date, but pnpm dev gives me this error:
⨯ ./src/components/AdminBar/index.scss
Error evaluating Node.js code
Error: Can't find stylesheet to import.
╷
1 │ @import 'vars';
│ ^^^^^^
That scss file has this import:
@import '~@payloadcms/ui/scss';
Gemini suggested some fixes, but I wanted to check here first, because I don't get why any fixing should be needed as the official guide seems to think this should all work right out the box. Also, My scss knowledge is minimal, as I've grown into Nextjs and React only using Tailwind. And I thought this template was Tailwind based and not scss.