The same thing happens to me but I haven't been able to solve the fact that eslint doesn't give me a custom class error with my custom classes in tailwind.config.js. How do I solve it without needing to add all my classes in a white list?
tailwindcss: {
config: './tailwind.config.js',
cssFiles: [
'**/*.css',
'!**/node_modules',
'!**/.*',
'!**/dist',
'!**/build',
],
callees: ['classnames', 'clsx', 'ctl'],
tags: ['tw'],
classRegex: '^class(Name)?$',
cssFilesRefreshRate: 5000,
skipClassAttribute: false,
exposeConfiguration: true,
whitelist: []