Can I add Daisy UI plugin to my django project? If yes , Please how do I do it?

I have already installed tailwind CSS to my django project and it works just fine,

I tried using the documentation procedure I saw at the daisyui website

npm i daisyui

and I also added the plugin to my tailwin.config.js file also

module.exports = { //... plugins: [require("daisyui")], }

Back to Top