Skip to content

Commit

Permalink
Squashed 'extensions/' changes from c276fc9e7..2d3e6594f
Browse files Browse the repository at this point in the history
2d3e6594f Ignore node modules in tailwind config (#33)
101dd359b Make ignore pattern more generic
3f5c87648 ignore extension node modules in tailwind config to fix warning

git-subtree-dir: extensions
git-subtree-split: 2d3e6594f9f06889ca9aa30a778483db160addbe
  • Loading branch information
Jolie Rabideau authored and Jolie Rabideau committed Dec 2, 2024
1 parent c9f6f2e commit f131e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import typography from '@tailwindcss/typography';
import tailwindCssAnimate from 'tailwindcss-animate';

const config: Config = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
content: ['./src/**/*.{js,ts,jsx,tsx}', '!./**/node_modules/**/*'],
// Prefix on all tailwind classes so they don't clash with built-in classes
// short for tailwind - we hope to have the same prefix as users of this library so the cn
// function that uses tailwind-merge can properly overwrite related tailwind classes
Expand Down

0 comments on commit f131e5c

Please sign in to comment.