Files
rhein-sw-website/postcss.config.mjs
Thatsaphorn Atchariyaphap 90e7fcced0 Update postcss.config.mjs file
Attempt to fix the following error:
#5 13.62 Error: It looks like you're trying to use tailwindcss directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install @tailwindcss/postcss and update your PostCSS configuration.
2025-04-04 22:05:41 +02:00

10 lines
167 B
JavaScript

/** @type {import('postcss-load-config').Config} */
const config = {
plugins: {
'@tailwindcss/postcss': {},
autoprefixer: {}
},
};
export default config;