-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Migrate from sprockets
to propshaft
#659
Migrate from sprockets
to propshaft
#659
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hay que borrar config/initializers/assets.rb ?
@@ -10,7 +10,8 @@ | |||
<link rel="icon" type="image/png" href="/icon-128.png" sizes="128x128"> | |||
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||
<%= stylesheet_link_tag 'application', media: 'all' %> | |||
<%= stylesheet_link_tag :app, "data-turbo-track": "reload" %> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
esto incluye todos los css que estan en app/assets/stylesheets/
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Si, cree una app Rails 8
nueva y tenia este comentario
<%# Includes all stylesheet files in app/assets/stylesheets %>
<%= stylesheet_link_tag :app, "data-turbo-track": "reload" %>
Aca en el generator de Rails
En una app Tal vez se podria quitar Rails.application.config.assets.paths << Rails.root.join('app/assets/fonts') |
Summary
This PR migrates from
sprockets-rails
topropshaft
following the official migration guide