Skip to content

Release v0.2.0#60

Merged
JiiminHa merged 1 commit intomainfrom
release
Feb 26, 2026
Merged

Release v0.2.0#60
JiiminHa merged 1 commit intomainfrom
release

Conversation

@JiiminHa
Copy link
Contributor

@JiiminHa JiiminHa commented Feb 26, 2026

Release v0.2.0 (#60) - @JiiminHa

@vercel
Copy link

vercel bot commented Feb 26, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
snow-code-client Ready Ready Preview, Comment Feb 26, 2026 11:32am

@JiiminHa JiiminHa merged commit 83aeb9e into main Feb 26, 2026
3 of 4 checks passed
@coderabbitai
Copy link

coderabbitai bot commented Feb 26, 2026

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 882cab1 and 0cd64de.

📒 Files selected for processing (1)
  • vercel.json

📝 Walkthrough

Summary by CodeRabbit

  • Chores
    • Vercel 배포를 위한 라우팅 설정 파일이 추가되었습니다. 이 설정을 통해 애플리케이션의 모든 경로가 올바르게 처리되며, 사용자가 어떤 URL로 접근하든 애플리케이션이 정상적으로 작동합니다.

Walkthrough

Vercel 배포 환경에서 SPA(Single Page Application) 라우팅을 지원하기 위해 새로운 설정 파일 vercel.json을 프로젝트 루트에 추가했습니다. 모든 경로를 /index.html로 리라이트하는 규칙을 포함하고 있습니다.

Changes

Cohort / File(s) Summary
Vercel 설정
vercel.json
SPA 클라이언트 라우팅을 위한 rewrites 규칙 추가 - 모든 요청 경로를 /index.html로 리라이트하여 클라이언트 측 라우터가 URL을 처리하도록 구성

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Suggested labels

⚙️ setting

Suggested reviewers

  • suminb99

📝 리뷰 코멘트

좋은 설정입니다!

SPA의 클라이언트 라우팅을 제대로 지원하기 위한 필수 설정이 잘 추가되었습니다. 한 가지 참고할 점은 이 설정이 정적 자산(CSS, JS, 이미지 등)에도 적용되지 않도록 더 정교한 규칙을 고려해볼 수 있다는 점입니다.

개선 제안:
Vercel의 공식 문서에서는 정적 파일은 제외하고 HTML 라우팅만 처리하도록 권장하고 있습니다. 다음과 같이 규칙을 정교화하면 더 좋습니다:

{
  "rewrites": [
    {
      "source": "/:path((?!.*\\.).*)",
      "destination": "/index.html"
    }
  ]
}

이 정규식은 파일 확장자가 없는 경로만 /index.html로 리라이트하여, 정적 자산 요청은 그대로 통과시킵니다.

참고 문서: Vercel Rewrites 공식 문서

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch release

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@JiiminHa JiiminHa changed the title chore: vercel.json 추가 Release v0.2.0 Feb 26, 2026
@JiiminHa JiiminHa self-assigned this Feb 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant