forked from OpenNeo/impress
Oops, add ActionCable back to the app
Turbo expects this to exist, for features we don't use! I didn't bother to check if Turbo has a way to turn this off too, I just said fine lol Turbo worked in development without this because it only loads files as needed, whereas in production it blocked the app from starting up. But you can see the error in development by running `rails zeitwerk:check`, which attempts to preload everything to make sure it all works, and you get this: ``` NameError: uninitialized constant ActionCable (NameError) class Turbo::StreamsChannel < ActionCable::Channel::Base ``` Fixed now!
This commit is contained in:
parent
75418339da
commit
7515527555
1 changed files with 1 additions and 1 deletions
|
@ -9,11 +9,11 @@ require "rails"
|
||||||
# Disabled:
|
# Disabled:
|
||||||
# - active_storage/engine
|
# - active_storage/engine
|
||||||
# - active_job/railtie
|
# - active_job/railtie
|
||||||
# - action_cable/engine
|
|
||||||
# - action_mailbox/engine
|
# - action_mailbox/engine
|
||||||
# - action_text/engine
|
# - action_text/engine
|
||||||
%w(
|
%w(
|
||||||
active_record/railtie
|
active_record/railtie
|
||||||
|
action_cable/engine
|
||||||
action_controller/railtie
|
action_controller/railtie
|
||||||
action_view/railtie
|
action_view/railtie
|
||||||
action_mailer/railtie
|
action_mailer/railtie
|
||||||
|
|
Loading…
Reference in a new issue