File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { cors } from 'hono/cors';
3
3
4
4
const app = new Hono ( ) ;
5
5
6
- // 디버깅을 위해 모든 출처를 허용하는 가장 단순한 CORS 설정....
6
+ // 디버깅을 위해 모든 출처를 허용하는 가장 단순한 CORS 설정...
7
7
app . use ( '*' , cors ( ) ) ;
8
8
9
9
// 다른 모든 라우트를 제거하고, 오직 이 테스트 라우트만 남깁니다.
Original file line number Diff line number Diff line change 1
1
// frontend/src/routes/+layout.ts
2
2
3
- // SvelteKit의 개발/프로덕션 모드 환경 변수를 가져옵니다.
3
+ // SvelteKit의 개발/프로덕션 모드 환경 변수를 가져옵니다..
4
4
import { dev } from '$app/environment' ;
5
5
// SvelteKit 전용 애널리틱스 모듈을 가져옵니다.
6
6
import { injectAnalytics } from '@vercel/analytics/sveltekit' ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://openapi.vercel.sh/vercel.json" ,
3
+ "builds" : [
4
+ {
5
+ "src" : " frontend/package.json" ,
6
+ "use" : " @vercel/static-build" ,
7
+ "config" : {
8
+ "distDir" : " build"
9
+ }
10
+ },
11
+ {
12
+ "src" : " backend/api/**/*.ts" ,
13
+ "use" : " @vercel/node"
14
+ }
15
+ ]
16
+ }
You can’t perform that action at this time.
0 commit comments