For the complete documentation index, see llms.txt. This page is also available as Markdown.

Environment.initialURL

함수형 API getSchemeUri로도 같은 기능을 쓸 수 있어요.

기능 설명

앱에 처음 진입할 때 사용한 스킴 URL이에요. 이후 페이지 이동은 반영되지 않아요.

상수 값이라 호출 없이 바로 읽어요.

타입

Environment.initialURL: string;

Params

없음

Response

스킴 URL 문자열이에요.

예시 코드

import { Environment } from "@apps-in-toss/web-framework";

console.log(Environment.initialURL);

도움이 되었나요?