Skip to content

Commit 94816e8

Browse files
committed
1 parent 8115d18 commit 94816e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cors } from 'hono/cors'; // CORS 미들웨어 import
33

44
const app = new Hono().basePath('/api');
55

6-
// CORS 미들웨어 설정
6+
// CORS 미들웨어 설정.
77
app.use(
88
'/*', // 하위의 모든 경로에 CORS 적용
99
cors({

frontend/src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
// 1. static에서 실제 변수 이름을 직접 가져옵니다.
2+
// 1. static에서 실제 변수 이름을 직접 가져옵니다..
33
import { PUBLIC_VITE_API_BASE_URL } from '$env/static/public';
44
55
// 2. 템플릿에서 사용하는 모든 상태 변수를 선언합니다.

0 commit comments

Comments
 (0)