feat: 移除服务台模块,更新管理员导航以重定向至菜单权限页面

This commit is contained in:
2026-05-13 09:52:36 +08:00
parent 5dd7aa1185
commit 188c6a04cf
10 changed files with 101 additions and 94 deletions

View File

@@ -3,6 +3,15 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
async redirects() {
return [
{
source: "/admin/service-desk",
destination: "/admin/menu-permissions",
permanent: true,
},
];
},
};
export default nextConfig;