(tailwindcss) Fixed: Dark mode classes are not being purged correctly due to the wrong safelist entry

This commit is contained in:
sercan 2021-06-25 12:21:34 +03:00
parent fa37f99d33
commit 1659d4babd

View File

@ -78,7 +78,8 @@ const config = {
content: ['./src/**/*.{html,scss,ts}'],
options: {
safelist: {
deep: [/^theme/, /^dark/, /^mat/]
standard: ['dark'],
deep : [/^theme/, /^mat/]
}
}
},