redirect: 修改根路径重定向至登录页面

- 将根路径 "/" 的重定向目标从 "/dashboard/workplace" 修改为 "/login"- 确保用户在访问根路径时能正确跳转到登录页面
master
钟良源 5 months ago
parent 95017c0f91
commit 8a535b965a

@ -43,7 +43,7 @@ module.exports = withLess(
return [
{
source: '/',
destination: '/dashboard/workplace',
destination: '/login',
permanent: true
}
];

Loading…
Cancel
Save