Skip to content

Commit

Permalink
fix(tailwind): Type issue with postcssCssVariables
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmfern committed Jan 22, 2024
1 parent e3508ec commit bd3df85
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const tailwindAtRulesRoot = postcss
)
.root();

const postcssVariablesProcessor = postcss([postcssCssVariables()]);
const postcssVariablesProcessor = postcss([
postcssCssVariables() as postcss.Plugin,
]);

export const generatePostcssRootForClasses = (
classes: string[],
Expand Down

0 comments on commit bd3df85

Please sign in to comment.