mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
9 lines
400 B
PHP
9 lines
400 B
PHP
<script>
|
|
{{--
|
|
We actually should use a library like dotenv-webpack to load .env variables.
|
|
Unfortunately, can't get it to work for now :(
|
|
--}}
|
|
window.BASE_URL = "{{ asset('') }}";
|
|
window.PUSHER_APP_KEY = "{{ config('broadcasting.connections.pusher.key') }}";
|
|
window.PUSHER_APP_CLUSTER = "{{ config('broadcasting.connections.pusher.options.cluster') }}";
|
|
</script>
|