mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
15 lines
288 B
PHP
15 lines
288 B
PHP
<?php
|
|
|
|
$config = [];
|
|
|
|
$skip_files = [];
|
|
|
|
$skip_files[] = '/app/common/app/functions.php';
|
|
$skip_files[] = '/app/common/app/listen.php';
|
|
$skip_files[] = '/app/common/app/middleware.php';
|
|
$skip_files[] = '/app/common/app/service.php';
|
|
|
|
$config['skip_files'] = $skip_files;
|
|
|
|
return $config;
|