How to add tailwind plugins?
I get "Cannot find module 'tailwindcss/plugin' " error
// tailwind.config.js module.exports = { plugins: [ require('@tailwindcss/ui'), ] }
I see environment.plugins.push() in postcss.config file.
Would that be the place to add tailwind plugins?
You probably still need to add the @tailwindcss/ui dependency to package.json and it should work then.
Run
Docs here: https://www.notion.so/Tailwind-UI-Documentation-f9083ed0e2694690ac89253e88afb2b6#c9efa316d69a444fa0bafc69ca4d0966
Run
yarn add @tailwindcss/ui
Docs here: https://www.notion.so/Tailwind-UI-Documentation-f9083ed0e2694690ac89253e88afb2b6#c9efa316d69a444fa0bafc69ca4d0966
Notifications
You’re not receiving notifications from this thread.