Would be great if it would default to tailwindcss v4.
pnpm add tailwindcss@4
pnpm add -D @tailwindcss/postcss
then update postcss.config.js with the following.
export default {
plugins: {
'@tailwindcss/postcss': {},
autoprefixer: {},
},
}
update app/base.css with the following:
@import "tailwindcss";
.test {
background-color: red;
}
Would be great if it would default to tailwindcss v4.
then update
postcss.config.jswith the following.update
app/base.csswith the following: