We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sass:compile
postcss
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In a Rails default app setup, the CSS file is loaded twice, resulting in both application.css and application-[digit].css being loaded.
application.css
application-[digit].css
rails new newapp --css=bootstrap --javascript=esbuild -a propshaft --master
rails g scaffold books title:string author:string publication_year:integer
Only one version of the CSS file application-[digit].css should be loaded.
Both application.css and application-[digit].css are loaded.
7
8
3.3
The text was updated successfully, but these errors were encountered:
This is a Google Chrome feature, there is only one css file on the web
Sorry, something went wrong.
No branches or pull requests
Description
In a Rails default app setup, the CSS file is loaded twice, resulting in both
application.css
andapplication-[digit].css
being loaded.Steps to Reproduce
Expected Behavior
Only one version of the CSS file
application-[digit].css
should be loaded.Actual Behavior
Both
application.css
andapplication-[digit].css
are loaded.Additional Information
7
and8
3.3
The text was updated successfully, but these errors were encountered: