Hi
my Rails-7.0.4 app is not precompiling assets in development as expected
expected
it should refresh styles on browser reload in development
current behaviour
by example adding a style to app/assets/stylesheets/application.scss
i have to do rails assets:precompile manually and then restart the server.
just precompile or just restart doesnt refresh the styles.
what i`ve done
i added config.assets.compile = true to environments/development.rb
it changed nothing, and, i assume that this is default anyhow.
i also tested the gem hotwire-livereload
on changing views ist working super-fast and refreshes properly
but, refreshing the stylesheets it has no affect to the above mentioned behaviour
can it be i started with this app on Rails-7.0.2, updated then to rails-7.0.3, by changing the gem in the gemfile. Can that have an affect?
Thanks, Chris