Skip to content

Commit d834e3b

Browse files
committed
fix: 누락된 PortOne 환경변수 정의 추가
1 parent d2e5ebc commit d834e3b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package/pyconkr-shop/utils/portone.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const startPortOnePurchase = (
1414
return
1515
}
1616

17-
IMP.init(import.meta.env.VITE_IMP_ACCOUNT_ID)
17+
IMP.init(import.meta.env.VITE_PYCONKR_SHOP_IMP_ACCOUNT_ID)
1818
IMP.request_pay(
1919
{
2020
pg: "kcp",

src/vite-env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ interface ViteTypeOptions {
66
interface ImportMetaEnv {
77
readonly VITE_PYCONKR_SHOP_API_DOMAIN: string;
88
readonly VITE_PYCONKR_SHOP_CSRF_COOKIE_NAME: string;
9+
readonly VITE_PYCONKR_SHOP_IMP_ACCOUNT_ID: string;
910
}
1011

1112
interface ImportMeta {

0 commit comments

Comments
 (0)