You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Yes tailwind paths are pre-configured with default settings that cannot be changed. The only way to customize them right now is by running the Tailwind CLI command directly with dotnet tailwind exec -w -i <INPUT> -c <CONFIG> -o <OUTPUT>.
As a workaround, you can create a bash/batch script with this command and run it easily with .\watch (Windows) or ./watch (Unix-like systems).
Currently, there are no plans to read these values from the *.csproj file, but PRs are welcome.
First of all thank you for the amazing tool!
Running
dotnet tailwind watch
executes 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 watch
just worksThe text was updated successfully, but these errors were encountered: