Files
onedrive-vercel-index/utils/tools.ts
T

7 lines
125 B
TypeScript

export const getBaseUrl = () => {
if (typeof window !== 'undefined') {
return window.location.origin
}
return ''
}