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.