Przeglądaj źródła

added https on assets

= 4 lat temu
rodzic
commit
e1506831b7
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      app/Providers/AppServiceProvider.php

+ 2 - 2
app/Providers/AppServiceProvider.php

@@ -24,8 +24,8 @@ class AppServiceProvider extends ServiceProvider
      */
      */
     public function boot(UrlGenerator $url) 
     public function boot(UrlGenerator $url) 
     {
     {
-        //if (config('app.env') !== 'local') {
+        if (config('app.env') !== 'local') {
             $url->forceScheme('https');
             $url->forceScheme('https');
-        //}
+        }
     }
     }
 }
 }