I'm struggling to install Tailwind CSS 2.2.10 in a Vue 3 project without Vite (so the "Install Tailwind CSS with Vue 3 and Vite" instructions do not apply)
Within the installation documentation, the "Add Tailwind as a PostCSS plugin" section reads:
Add tailwindcss and autoprefixer to your PostCSS configuration. Most of the time this is a postcss.config.js file at the root of your project, but it could also be a .postcssrc file, or postcss key in your package.json file.
Is "postcss": "^8.3.6", in my package.json file the "postcss key" mentioned in the docs (see bold above), or do I need a postcss.config.js file?
Thanks!