mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-01 18:58:12 +00:00
8 lines
147 B
PHP
8 lines
147 B
PHP
<?php
|
|
// 全局中间件定义文件
|
|
use app\api\middleware\AllowCrossDomain;
|
|
return [
|
|
//跨域请求中间件
|
|
AllowCrossDomain::class,
|
|
];
|