Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 636 Bytes

cors.md

File metadata and controls

26 lines (20 loc) · 636 Bytes

CORS

This recipe will help you to setup a Cross-Origin Resource Sharing pipe in your application.

{% hint style="warning" %} First you need an amber project generated with Amber CLI or from scratch. {% endhint %}

{% code-tabs %} {% code-tabs-item title="config/application.cr" %}

Amber::Server.configure do
  pipeline :api do
    plug Pipe::CORS.new
  end
  
  routes :api do
    # your routes here...
  end
end

{% endcode-tabs-item %} {% endcode-tabs %}

Also see pipelines.