[Vuejs]-Error: ENOENT: no such file or directory, open 'C:\Users\username\Desktop\vue-tailwind-naive\tailwind.config.js'

3👍

Try to delete the postcss.config.js then run the following command at the project root :

 npx tailwindcss init -p

this command will create postcss.config.js and tailwind.config.js files.

0👍

In my case I changed the ("./tailwind.config.js") to ("./tailwind.config.cjs") in postcss.config.cjs plugins

Leave a comment