We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If the application does not use the asset pipeline, the app will crash because of the following initializer :
initializer "turbo.assets" do Rails.application.config.assets.precompile += %w( turbo ) end
undefined method `assets' for #Rails::Application::Configuration:0x00007fa70a4d6be8 (NoMethodError)
Happy to provide a pull request to fix this behaviour if you believe it should not crash in this case
Thanks for making this ! <3
The text was updated successfully, but these errors were encountered:
a small fix would work
if Rails.application.config.respond_to? :assets Rails.application.config.assets.precompile += %w( turbo ) end
any volunteer?
Sorry, something went wrong.
I'll check how it's done in other rails engines and submit a PR
Successfully merging a pull request may close this issue.
If the application does not use the asset pipeline, the app will crash because of the following initializer :
Happy to provide a pull request to fix this behaviour if you believe it should not crash in this case
Thanks for making this ! <3
The text was updated successfully, but these errors were encountered: