mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
9 lines
397 B
PHP
9 lines
397 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 = @json(asset(''));
|
|
window.PUSHER_APP_KEY = @json(config('broadcasting.connections.pusher.key'));
|
|
window.PUSHER_APP_CLUSTER = @json(config('broadcasting.connections.pusher.options.cluster'));
|
|
</script>
|