fix. 불필요한 파일 제거
This commit is contained in:
@@ -9,7 +9,7 @@ const { gameData } = useGameDataStore()
|
||||
|
||||
const stoveInflowPath = runtimeConfig.public.stoveInflowPath
|
||||
const stoveGameNo = runtimeConfig.public.stoveGameNo
|
||||
const gnbData = gameData?.stove_gnb_json
|
||||
const stoveGnbData = gameData?.stove_gnb_json
|
||||
|
||||
const languageCodes = computed(() => {
|
||||
if (Array.isArray(availableLocales)) {
|
||||
@@ -24,9 +24,9 @@ const loadGnb = (locale: string) => {
|
||||
locale = locale.toLowerCase()
|
||||
|
||||
const gnbOption = {
|
||||
wrapper: '#stove-wrapper',
|
||||
wrapper: '#stove-wrap',
|
||||
isResponsive: true,
|
||||
skin: gnbData?.skin_type || 'gnb-dark-mini',
|
||||
skin: stoveGnbData?.skin_type || 'gnb-dark-mini',
|
||||
widget: {
|
||||
gameListAndService: false,
|
||||
languageSelect: false,
|
||||
@@ -42,7 +42,7 @@ const loadGnb = (locale: string) => {
|
||||
params: {
|
||||
inflow_path: stoveInflowPath,
|
||||
game_no: stoveGameNo,
|
||||
show_play_button: gnbData?.stove_install_button_visible || 'Y',
|
||||
show_play_button: stoveGnbData?.stove_install_button_visible || 'Y',
|
||||
},
|
||||
redirectCurrentPage: true,
|
||||
windowTitle: undefined,
|
||||
@@ -66,5 +66,5 @@ onBeforeUnmount(() => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div id="stove-wrapper" class="relative z-[5]" />
|
||||
<div id="stove-wrap" class="relative z-[5]" />
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user