I installed the plugin @tailwindcss/line-clamp
, but its not working its not being suggested by intellisense and even when I type in the class manually it doesn't change my styling .
here is my tailwind config :
module.exports = {
content: ['./src/**/*.tsx', './src/**/*.ts'],
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/line-clamp')],
}
btw this a typescript React project .