React.lazy() that uses window.location.origin inside <Suspense> boundary like this.const LinkCreateForm = React.lazy(() => import("../components/LinkCreateForm"));<React.Suspense fallback={<div>loading...</div>}><LinkCreateForm /></React.Suspense>window is not defined on initial load. What could be the reason? Any help is appreciated.