Skip to content

Commit

Permalink
update cors.rb to enable cors
Browse files Browse the repository at this point in the history
  • Loading branch information
yuenmichelle1 committed Sep 27, 2023
1 parent 5f56a07 commit bb54311
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions config/initializers/cors.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
# Be sure to restart your server when you modify this file.
# frozen_string_literal: true

# Avoid CORS issues when API is called from the frontend app.
# Handle Cross-Origin Resource Sharing (CORS) in order to accept cross-origin AJAX requests.

# Read more: https://github.com/cyu/rack-cors

# Rails.application.config.middleware.insert_before 0, Rack::Cors do
# allow do
# origins "example.com"
#
# resource "*",
# headers: :any,
# methods: [:get, :post, :put, :patch, :delete, :options, :head]
# end
# end
Rails.application.config.middleware.insert_before 0, Rack::Cors do
allow do
origins '*'
resource '*', headers: :any, methods: :any
end
end

0 comments on commit bb54311

Please sign in to comment.