/** * 사장님 앱 오리진. 빌더는 다른 오리진이라(:3000 vs :3002) react-router Link 로 두면 * admin 안에서 404 다. 절대 URL + 새 탭으로 연다. */ const ORIGIN = import.meta.env.VITE_SOLUTION_URL ?? 'http://localhost:3000'; export function builderUrl(params?: {placeId?: string; isNew?: boolean}): string { if (params?.placeId) return `${ORIGIN}/builder?placeId=${encodeURIComponent(params.placeId)}`; return `${ORIGIN}/builder?new=1`; }