mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-15 02:33:50 +08:00
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
export default function loginPageHref() {
|
|
return {
|
|
pathname: '/login',
|
|
query: {
|
|
redirect: typeof window !== 'undefined' ? window.location.href : null,
|
|
},
|
|
};
|
|
}
|