From 5e03a37506c75609a97c8668226c692b566c1efc Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Sun, 19 Jun 2016 12:48:40 +0100 Subject: [PATCH] Disable Laravel CORS --- app/Http/Kernel.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 54be437..a708c17 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -33,8 +33,7 @@ class Kernel extends HttpKernel ], 'api' => [ - \Barryvdh\Cors\HandleCors::class, - 'throttle:60,1', + 'throttle:60,1' ], ]; -- libgit2 1.7.2