change permission for js
This commit is contained in:
parent
b441047fbc
commit
41ed733eb7
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Illuminate\Support\ServiceProvider;
|
use Illuminate\Support\ServiceProvider;
|
||||||
|
use Illuminate\Support\Facades\URL;
|
||||||
|
|
||||||
class AppServiceProvider extends ServiceProvider
|
class AppServiceProvider extends ServiceProvider
|
||||||
{
|
{
|
||||||
|
|
@ -25,5 +26,9 @@ public function boot()
|
||||||
|
|
||||||
// Opsional: Set timezone jika diperlukan
|
// Opsional: Set timezone jika diperlukan
|
||||||
date_default_timezone_set('Asia/Jakarta');
|
date_default_timezone_set('Asia/Jakarta');
|
||||||
|
|
||||||
|
if (config('app.env') === 'production') {
|
||||||
|
URL::forceScheme('https');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
0
public/vendors/bootstrap-icons/font/bootstrap-icons.min.css
vendored
Normal file → Executable file
0
public/vendors/bootstrap-icons/font/bootstrap-icons.min.css
vendored
Normal file → Executable file
0
public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff
vendored
Normal file → Executable file
0
public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff
vendored
Normal file → Executable file
0
public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff2
vendored
Normal file → Executable file
0
public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff2
vendored
Normal file → Executable file
0
public/vendors/bootstrap/scss/helpers/_text-truncation.scss
vendored
Normal file → Executable file
0
public/vendors/bootstrap/scss/helpers/_text-truncation.scss
vendored
Normal file → Executable file
0
public/vendors/bootstrap/scss/helpers/_visually-hidden.scss
vendored
Normal file → Executable file
0
public/vendors/bootstrap/scss/helpers/_visually-hidden.scss
vendored
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue