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