First of all thank you for the amazing tool!
Running dotnet tailwind watch executes the following command:
<TAILWIND_EXE> -i <PROJECT_PATH>/styles/app.tailwind.css -o <PROJECT_PATH>/wwwroot/css/app.css -c /hom<PROJECT_PATH>/tailwind.config.js --minify -w
I would like to configure different values for those paths (/styles/app.tailwind.css, /wwwroot/css/app.css , /tailwind.config.js) but see no option or way to configure it in the documentation. Am I missing something or is it not possible at the moment?
I have worked around it by running dotnet tailwind exec -w -i <INPUT> -c <CONFIG> -o <OUTPUT> but it would be best if these values could be configured at a project level so running dotnet tailwind watch just works
First of all thank you for the amazing tool!
Running
dotnet tailwind watchexecutes the following command:I would like to configure different values for those paths (
/styles/app.tailwind.css,/wwwroot/css/app.css,/tailwind.config.js) but see no option or way to configure it in the documentation. Am I missing something or is it not possible at the moment?I have worked around it by running
dotnet tailwind exec -w -i <INPUT> -c <CONFIG> -o <OUTPUT>but it would be best if these values could be configured at a project level so runningdotnet tailwind watchjust works