修改配置文件

This commit is contained in:
Anyon 2020-08-24 13:53:27 +08:00
parent 389c9ba723
commit 3d852babf6
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ return [
// 磁盘类型
'type' => 'local',
// 磁盘路径
'root' => app()->getRootPath() . 'public/storage',
'root' => app()->getRootPath() . 'public' . DIRECTORY_SEPARATOR . 'storage',
// 磁盘路径对应的外部URL路径
'url' => '/storage',
// 可见性

View File

@ -24,12 +24,12 @@ return [
'use_cookie' => true,
// 多语言 Cookie 变量
'cookie_var' => 'think_lang',
// 是否支持语言分组
'allow_group' => false,
// 扩展语言包
'extend_list' => [],
// 转义为对应语言包名称
'accept_language' => [
'zh-hans-cn' => 'zh-cn',
],
// 是否支持语言分组
'allow_group' => false,
];