From b5f723397b943bc67f855a07565a6d7b5fe95b9e Mon Sep 17 00:00:00 2001 From: clkim Date: Fri, 7 Nov 2025 13:09:22 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20=EC=95=8C=EC=88=98=EC=97=86=EB=8A=94=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=96=BC=EB=9F=BF=EC=97=90=20=EC=8A=A4?= =?UTF-8?q?=ED=86=A0=EB=B8=8C=20=EA=B3=A0=EA=B0=9D=EC=84=BC=ED=84=B0=20url?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.dev | 4 ++++ .env.live | 3 +++ .env.qa | 3 +++ .env.sandbox | 3 +++ layers/components/atoms/Button/Launcher.vue | 6 ++++-- layers/components/atoms/Button/Sns.vue | 8 ++++---- layers/components/blocks/StoveGnb.vue | 6 ++++-- layers/components/widgets/modal/Preregist.vue | 14 +++++++++----- layers/composables/useGameStart.ts | 10 +++++++--- layers/composables/useTokenValidation.ts | 10 +++++++--- nuxt.config.ts | 2 ++ 11 files changed, 50 insertions(+), 19 deletions(-) diff --git a/.env.dev b/.env.dev index 3b6c784..f43da0b 100644 --- a/.env.dev +++ b/.env.dev @@ -20,6 +20,10 @@ STOVE_LAUNCHER_SCRIPT=https://js-cdn.gate8.com/libs/stove-js-service/latest/laun STOVE_CLIENT_DOWNLOAD_URL=https://sgs-gate8-dl.game.playstove.com/game/lcs/STOVESetup.exe STOVE_LOGIN_URL=https://accounts-dev.onstove.com/login + +# STOVE +STOVE_CS=https://cs.onstove.com/service + # Log Tracking ###################################################################### # 81plug STOVE_81PLUG=https://dvudc0gwzz5wc.cloudfront.net/v3.1/dev/svc_81plug.min.js \ No newline at end of file diff --git a/.env.live b/.env.live index fd89ee3..d8200e9 100644 --- a/.env.live +++ b/.env.live @@ -20,6 +20,9 @@ STOVE_LAUNCHER_SCRIPT=https://js-cdn.onstove.com/libs/stove-js-service/latest/la STOVE_CLIENT_DOWNLOAD_URL=https://sgs-live-dl.game.playstove.com/game/lcs/STOVESetup.exe STOVE_LOGIN_URL=https://accounts.onstove.com/login +# STOVE +STOVE_CS=https://cs.onstove.com/service + # Log Tracking ###################################################################### # 81plug STOVE_81PLUG=https://dvudc0gwzz5wc.cloudfront.net/v3.1/live/svc_81plug.min.js \ No newline at end of file diff --git a/.env.qa b/.env.qa index 28b4caf..401fcc6 100644 --- a/.env.qa +++ b/.env.qa @@ -20,6 +20,9 @@ STOVE_LAUNCHER_SCRIPT=https://js-cdn.gate8.com/libs/stove-js-service/latest/laun STOVE_CLIENT_DOWNLOAD_URL=https://sgs-gate8-dl.game.playstove.com/game/lcs/STOVESetup.exe STOVE_LOGIN_URL=https://accounts-qa.onstove.com/login +# STOVE +STOVE_CS=https://cs.onstove.com/service + # Log Tracking ###################################################################### # 81plug STOVE_81PLUG=https://dvudc0gwzz5wc.cloudfront.net/v3.1/qa/svc_81plug.min.js diff --git a/.env.sandbox b/.env.sandbox index 87e5ed7..5c03b91 100644 --- a/.env.sandbox +++ b/.env.sandbox @@ -20,6 +20,9 @@ STOVE_LAUNCHER_SCRIPT=https://js-cdn.gate8.com/libs/stove-js-service/latest/laun STOVE_CLIENT_DOWNLOAD_URL=https://sgs-gate8-dl.game.playstove.com/game/lcs/STOVESetup.exe STOVE_LOGIN_URL=https://accounts.gate8.com/login +# STOVE +STOVE_CS=https://cs.onstove.com/service + # Log Tracking ###################################################################### # 81plug STOVE_81PLUG=https://dvudc0gwzz5wc.cloudfront.net/v3.1/sandbox/svc_81plug.min.js \ No newline at end of file diff --git a/layers/components/atoms/Button/Launcher.vue b/layers/components/atoms/Button/Launcher.vue index 4ce0dbf..bcec4f8 100644 --- a/layers/components/atoms/Button/Launcher.vue +++ b/layers/components/atoms/Button/Launcher.vue @@ -22,9 +22,11 @@ const props = withDefaults(defineProps(), { }) const runtimeConfig = useRuntimeConfig() -const { gameData } = useGameDataStore() +const gameDataStore = useGameDataStore() const { isProcessing, validateLauncher } = useCheckGameStart() +const { gameData } = storeToRefs(gameDataStore) + const PLATFORM_ICON_MAP: Record = { google_play: 'AtomsIconsLogoGoogle', app_store: 'AtomsIconsLogoApple', @@ -75,7 +77,7 @@ const handleClick = () => { return } - const url = gameData?.market_json[props.platform]?.url + const url = gameData.value?.market_json[props.platform]?.url if (url) window.open(url, '_blank') } diff --git a/layers/components/atoms/Button/Sns.vue b/layers/components/atoms/Button/Sns.vue index 3797bff..3bea886 100644 --- a/layers/components/atoms/Button/Sns.vue +++ b/layers/components/atoms/Button/Sns.vue @@ -1,14 +1,14 @@