Created
January 22, 2016 21:05
-
-
Save patmaddox/c9f635b76830c3c82782 to your computer and use it in GitHub Desktop.
Rack::Cors no worky
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "jekyll-auth" | |
| require "rack/cors" | |
| run JekyllAuth.site | |
| use Rack::Cors do | |
| allow do | |
| origins '*' | |
| resource '*', headers: :any, methods: [:get, :options, :head] | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment