Created
July 23, 2023 06:34
-
-
Save tfsojon/a3122a65db790a757e9b6fb7b01787d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
content: [ | |
'./pages/**/*.{html,js}', | |
'./components/**/*.{html,js}', | |
], | |
safelist: [ | |
'text-2xl', | |
'text-3xl', | |
{ | |
pattern: /bg-(red|green|blue)-(100|200|300)/, | |
}, | |
], | |
blocklist: [ | |
'container', | |
'collapse', | |
], | |
} | |
// https://tailwindcss.com/docs/content-configuration#safelisting-classes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment