22 lines
755 B
PHP
22 lines
755 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Define which assets will be available through the asset manager
|
||
|
|--------------------------------------------------------------------------
|
||
|
| These assets are registered on the asset manager
|
||
|
*/
|
||
|
'all_assets' => [
|
||
|
'admin.currency.js' => ['module' => 'currency:admin/js/currency.js'],
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Define which default assets will always be included in your pages
|
||
|
| through the asset pipeline
|
||
|
|--------------------------------------------------------------------------
|
||
|
*/
|
||
|
'required_assets' => [],
|
||
|
];
|