I have this file structure
└── my-lib/
├── playground/
│ ├── {vue project files}
│ ├── package.json
│ └── vite.config.ts
├── src/
│ ├── components
│ └── index.ts
├── vite.config.js
├── tailwind.config.js
└── postcss.config.js
and when I cd playground and run npm run dev
I get this error and I do not have postcss at the directory that I am running vite inside
[plugin:vite:css] [postcss] Cannot read properties of undefined (reading 'config')
is there something I am doing wrong?