export const path = "/login"export default (function LoginScreen() {...}) satisfies Component
import { path as loginPath } from "#route/login" // this import is outside the `lazy()` function, is this ok?const routes = [{ path: loginPath, component: lazy(() => import("#route/login")),}]