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
When I start a Rails app with this command, it causes a 404 error by default, because it's loading the unprocessed application.tailwind.css file in the browser, which tries to do an @import "tailwindcss";.
Here's a repo that reproduces the problem. I wrote notes in each of the four commits.
It also shows bug #169 (where Bun is used even when yarn is managing the project), which I think is critical, because it breaks projects created with the rails new command.
Screenshots in Firefox:
The contents of that file that is served to the browser:
@import "tailwindcss";
The actual processed Tailwind code is in the other CSS file above that raw one.
The text was updated successfully, but these errors were encountered:
When I start a Rails app with this command, it causes a 404 error by default, because it's loading the unprocessed
application.tailwind.css
file in the browser, which tries to do an@import "tailwindcss";
.Here's a repo that reproduces the problem. I wrote notes in each of the four commits.
It also shows bug #169 (where Bun is used even when yarn is managing the project), which I think is critical, because it breaks projects created with the
rails new
command.Screenshots in Firefox:
The contents of that file that is served to the browser:
The actual processed Tailwind code is in the other CSS file above that raw one.
The text was updated successfully, but these errors were encountered: