feat: 쿠폰등록

This commit is contained in:
최만억 (Jo)
2025-11-10 06:22:43 +00:00
committed by 김채린
parent ceee82268c
commit 77c760c022
33 changed files with 2681 additions and 16 deletions

View File

@@ -82,3 +82,15 @@ export const csrGetCountry = () => {
}
return countryCode
}
/**
* STOVE 쿠폰함 링크 조회
*/
export const getStoveCouponUrl = (device: string) => {
const runtimeConfig = useRuntimeConfig()
const stoveCouponUrl = runtimeConfig.public.stoveCouponUrl as string
const stoveMCouponUrl = runtimeConfig.public.stoveMCouponUrl as string
return device === 'desktop' ? stoveCouponUrl : stoveMCouponUrl
}