Files
paranarimasu 3ed878ab46 fix: allow configurable domain and prefix for all supported routes (#393)
* fix: allow configurable domain and prefix for all supported routes

* style: fix StyleCI finding
2022-06-07 09:56:46 -05:00

25 lines
759 B
PHP

<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Web Domain
|--------------------------------------------------------------------------
|
| These values represent the base URL that web routes are hosted on.
| It is most likely that only one of these values should be set.
| If the web routes are hosted on a subdomain or at the root domain, set WEB_URL and leave WEB_PATH null.
| Ex: app.animethemes.test or animethemes.test
| If the web routes are NOT hosted on a subdomain or at the root domain, set WEB_PATH and leave WEB_URL null.
| Ex: animethemes.test/app
|
*/
'url' => env('WEB_URL'),
'path' => env('WEB_PATH'),
];