mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 19:05:32 -04:00
9 lines
196 B
Crystal
9 lines
196 B
Crystal
class CORSHandler < Kemal::Handler
|
|
def call(env)
|
|
if request_path_startswith env, ["/api"]
|
|
env.response.headers["Access-Control-Allow-Origin"] = "*"
|
|
end
|
|
call_next env
|
|
end
|
|
end
|