mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
12 lines
309 B
PHP
12 lines
309 B
PHP
@extends('base')
|
|
|
|
@section('title', 'Koel')
|
|
|
|
@push('scripts')
|
|
<script>
|
|
window.MAILER_CONFIGURED = @json(mailer_configured());
|
|
window.SSO_PROVIDERS = @json(collect_sso_providers());
|
|
window.AUTH_TOKEN = @json($token);
|
|
</script>
|
|
@vite(['resources/assets/js/app.ts'])
|
|
@endpush
|