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
New rails 8.0 app generated with rails new test8 -c postcss (or bootstrap, or bulma) contains the following lines in application.html.erb:
<%# Includes all stylesheet files in app/assets/stylesheets %>
<%= stylesheet_link_tag :app, "data-turbo-track": "reload" %>
<%= javascript_importmap_tags %>
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
The first stylesheet_link_tag comes from rails itself, the second one comes from cssbundling-rails, likely introduced by this PR #15, so the application.css file gets included twice.
The text was updated successfully, but these errors were encountered:
New rails 8.0 app generated with
rails new test8 -c postcss
(or bootstrap, or bulma) contains the following lines inapplication.html.erb
:The first
stylesheet_link_tag
comes from rails itself, the second one comes from cssbundling-rails, likely introduced by this PR #15, so the application.css file gets included twice.The text was updated successfully, but these errors were encountered: