We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tailwindcss requires postcss v8 and craco uses postcss v7.
Upgrading the tailwindcss to 2.x gives the following error:
I've the following configuration in:
postcss.config.js
module.exports = { plugins: [ require('tailwindcss'), ], };
craco.config.js
const { POSTCSS_MODES } = require('@craco/craco'); module.exports = { style: { postcss: { mode: POSTCSS_MODES.file, }, }, };
The text was updated successfully, but these errors were encountered:
Closing this as this has to be done by CRA not craco.
Sorry, something went wrong.
Looks like it just got merged in CRA facebook/create-react-app#10456
So, should it work with PostCSS 8 since it has been merged into CRA?
No branches or pull requests
Tailwindcss requires postcss v8 and craco uses postcss v7.
Upgrading the tailwindcss to 2.x gives the following error:
I've the following configuration in:
postcss.config.js
craco.config.js
The text was updated successfully, but these errors were encountered: