오로라 통합형 스킨 패치 가이드
오로라 통합형 (리액트) 스킨 패치 가이드 입니다.
릴리즈 노트
적용 방법
// src/index.js
const renderApp = async () => {
// ...
const excludePaths = ['/callback/auth-callback'];
if (!excludePaths.includes(location.pathname)) {
const searchParams = new URLSearchParams(location.search);
const trackingKey = searchParams.get('trackingKey');
const channelType = searchParams.get('channelType');
setTrackingKey(trackingKey);
setChannelType(channelType);
//...
}
}Last updated