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.
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
/** @type {import('postcss-load-config').Config} */
|
|
const config = {
|
|
plugins: {
|
|
'@tailwindcss/postcss': {},
|
|
autoprefixer: {}
|
|
},
|
|
};
|
|
|
|
export default config;
|