mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
26 lines
713 B
PHP
26 lines
713 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Directory
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The absolute path for loading plugins.
|
|
| Defaults to `base_path()."/plugins"`.
|
|
|
|
|
*/
|
|
'directory' => menv('PLUGINS_DIR'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Assets URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The URL to access plugin's assets (CSS, JavaScript etc.).
|
|
| Defaults to `http://site_url/plugins`.
|
|
|
|
|
*/
|
|
'url' => menv('PLUGINS_URL'),
|
|
];
|