[Vuejs]-URL defined by config.action_cable.url generating 404 when consumed by Vue frontend

0👍

The fix was pretty simple, just needed to add this to config/environments/development.rb:

config.action_cable.allowed_request_origins = [/http:\/\/*/, /https:\/\/*/]

Leave a comment