Skip to content

Commit 24315e5

Browse files
committed
feat: 파비콘 추가 및 이름 변경
1 parent b058de8 commit 24315e5

5 files changed

Lines changed: 33 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
dist-preview
55
.vite
66
dist.zip
7+
.vercel

popup.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>eHelper</title>
7+
<link rel="icon" type="image/png" sizes="32x32" href="/icons/icon32.png" />
8+
<link rel="icon" type="image/png" sizes="16x16" href="/icons/icon16.png" />
79
</head>
810
<body>
911
<div id="popup-root"></div>

preview.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,20 @@
22
<html lang="ko">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta
6-
name="viewport"
7-
content="width=device-width, initial-scale=1.0"
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>eHelper</title>
7+
<link
8+
rel="icon"
9+
type="image/png"
10+
sizes="32x32"
11+
href="/icons/icon32.png"
12+
/>
13+
<link
14+
rel="icon"
15+
type="image/png"
16+
sizes="16x16"
17+
href="/icons/icon16.png"
818
/>
9-
<title>eHelper Landing Preview</title>
1019
</head>
1120
<body>
1221
<div id="preview-root"></div>

src/preview/components/landing/LandingHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ export function LandingHeader() {
2727
</div>
2828
<div>
2929
<p className="text-[11px] font-semibold uppercase tracking-[0.24em] text-sky-200">
30-
eHelper
30+
eCampus Helper
3131
</p>
3232
<p className="text-[15px] font-semibold text-slate-100">
33-
eCampus Workflow Landing
33+
eHelper
3434
</p>
3535
</div>
3636
</a>

vercel.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"name": "ehelper",
4+
"scope": "kimyeonjins-projects",
5+
"framework": "vite",
6+
"installCommand": "npm ci",
7+
"buildCommand": "npm run build:ui",
8+
"outputDirectory": "dist-preview",
9+
"rewrites": [
10+
{
11+
"source": "/",
12+
"destination": "/preview.html"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)