Tailwind IntelliSene not working in .html files

Hello everyone, can somebody confirm me if they tailwind intellisense is working for you in raw html files, have my tailwind.config.js like this, in vscode works as expected:

const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
    ...createGlobPatternsForDependencies(__dirname),
    './node_modules/flowbite/**/*.js',
  ],
  plugins: [
    require('flowbite/plugin'),
  ],
};

Works. Your Tailwindconfig is also rather irrelevant, more important is your Tailwind CSS IntelliSense plugin, which must be installed. But it could also be that it doesn’t want to work because other plugins are interfering with the function.

yeah, got the plugin already, same as my vscode config. Pretty Typescript Errors plugin is not working also for me. Still an issue

this isnt working for me too, it works in vscode but not in cursor so i don’t think it’s a problem with project config

luckily for me Version: 0.40.3 seems to do the work for me