-
Notifications
You must be signed in to change notification settings - Fork 147
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
Rails 7.0.0 #193
Comments
I'm experiencing a similar issue with Ruby 3.1.2, Rails 7.0.3.1, sass 3.4.25, and sass-rails 6.0.0. Update: it appears the page is trying to load |
Might be a sprockets 4 issue? Found some interesting insights here: https://lightrun.com/answers/guard-guard-livereload-not-reloading-css-correctly-with-configassetsdebug--false. Fixed the issue for me by setting |
Thanks, config.assets.digest = false solved it for me as well. |
I had a similar problem, but in this case it was in application.css and in some assets. To resolve this, delete all cache and pre-compiled assets, which I ended up doing by mistake and I also noticed that whenever I transpiled the javascript after the css, it also gave this error. |
I try to use liveReload with Ruby on Rails 7.0.0.
My setup uses ESLint to build javascript files and Dart-Sass to build CSS.
When I make a change, I have the following error:
The right file to reload is
/app/assets/builds/application.css
andapplication.js
.The Procfile.dev is as follow:
The text was updated successfully, but these errors were encountered: