9 lines
204 B
Ruby
9 lines
204 B
Ruby
|
Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
||
|
allow do
|
||
|
origins '*'
|
||
|
resource '*',
|
||
|
headers: :any,
|
||
|
methods: [:get, :post, :put, :delete, :options, :head]
|
||
|
end
|
||
|
end
|