Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project

React + TypeScript + Vite 기반의 FSD(Feature-Sliced Design) 아키텍처를 적용한 프로젝트입니다.
프로젝트 잼 - 함께 만들어가는 사이드 프로젝트

## 📋 목차

Expand Down
9 changes: 9 additions & 0 deletions src/app/assets/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 33 additions & 3 deletions src/app/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,40 @@
<!doctype html>
<html lang="en">
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="./assets/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<meta
name="description"
content="프로젝트 잼 - 함께 만들어가는 사이드 프로젝트"
/>
<meta
name="keywords"
content="프로젝트 잼, 사이드 프로젝트, 프로젝트 관리, 프로젝트 공유"
/>
<meta name="author" content="프로젝트 잼" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="google" content="notranslate" />
<meta
name="google-site-verification"
content="google-site-verification=google-site-verification"
/>
<meta
name="og:title"
content="프로젝트 잼 - 함께 만들어가는 사이드 프로젝트"
/>
<meta
name="og:description"
content="프로젝트 잼 - 함께 만들어가는 사이드 프로젝트"
/>
<meta name="og:image" content="./assets/icon.svg" />
<meta name="og:url" content="https://project-jam-gamma.vercel.app/" />
<meta name="og:site_name" content="프로젝트 잼" />
<meta name="og:type" content="website" />
<meta name="og:locale" content="ko_KR" />
<meta name="og:locale:alternate" content="ko_KR" />
<title>프로젝트 잼 - 함께 만들어가는 사이드 프로젝트</title>
</head>
<body>
<div id="root"></div>
Expand Down
9 changes: 8 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
"routes": [{ "src": "/[^.]+", "dest": "/", "status": 200 }]
"buildCommand": "pnpm build",
"outputDirectory": "dist",
"routes": [
{
"src": "/[^.]+",
"dest": "/index.html"
}
]
}