10 lines
245 B
Ruby
10 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
|
allow do
|
|
origins '*'
|
|
resource '/api/*',
|
|
headers: :any,
|
|
methods: %i(get post put delete options head)
|
|
end
|
|
end
|