I recently tried to upgrade my project to tailwind css and I'm getting this error
this is my tailwind config
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
secondaryDark: "#171A1A",
primaryDark: "#090A0A",
neonOrange: "#FF9933",
redditRed: "#FF5700",
cardGradientPrimary: "#ff930f",
cardGradientSecondary: "#fff95b",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};
Santiago Trujillo
I have the same issue after upgrade to tailwind v3 and fixed it by update @tailwindcss/forms to 0.4.0