mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
24 lines
435 B
PHP
24 lines
435 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
* Set the names of files you want to add to generated javascript.
|
|
* Otherwise all the files will be included.
|
|
*
|
|
* 'messages' => [
|
|
* 'validation',
|
|
* 'forum/thread',
|
|
* ],
|
|
*/
|
|
'messages' => [
|
|
'components',
|
|
'list',
|
|
],
|
|
|
|
/*
|
|
* The default path to use for the generated javascript.
|
|
*/
|
|
'path' => public_path('messages.js'),
|
|
];
|