Skip to content

Commit e68a8ea

Browse files
committed
Merge branch 'develop' of https://github.com/SKKU-FINITY/fini-client into 13-feature-절대경로-세팅
2 parents 9473422 + de67fa6 commit e68a8ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3163
-42
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_BASE_URL=

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: "💡 Feature"
2-
description: "새로운 기능 또는 명세가 있나요?"
3-
title: "[Feature] "
4-
labels: "💡 Feature"
1+
name: '💡 Feature'
2+
description: '새로운 기능 또는 명세가 있나요?'
3+
title: '[Feat] '
4+
labels: '💡 Feature'
55
body:
66
- type: textarea
77
attributes:

.github/ISSUE_TEMPLATE/fix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: "💥 Fix"
2-
description: "버그 혹은 해결해야 할 문제가 생겼나요?"
3-
title: "[Fix] "
4-
labels: "💥 Fix"
1+
name: '💥 Fix'
2+
description: '버그 혹은 해결해야 할 문제가 생겼나요?'
3+
title: '[Fix] '
4+
labels: '💥 Fix'
55
body:
66
- type: textarea
77
attributes:

.github/ISSUE_TEMPLATE/refactor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: "🔨 Refactor"
2-
description: "리팩터링을 해야할 부분이 있나요?"
3-
title: "[Refactor] "
4-
labels: "🔨 Refactor"
1+
name: '🔨 Refactor'
2+
description: '리팩터링을 해야할 부분이 있나요?'
3+
title: '[Refactor] '
4+
labels: '🔨 Refactor'
55
body:
66
- type: textarea
77
attributes:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build Test
22

33
on:
44
push:
5-
branches: ["develop"]
5+
branches: ['develop']
66
pull_request:
7-
branches: ["develop"]
7+
branches: ['develop']
88

99
jobs:
1010
build:
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-node@v4
2424
with:
2525
node-version: 20
26-
cache: "pnpm"
26+
cache: 'pnpm'
2727

2828
- name: 📥 Install Dependencies
2929
run: pnpm install --frozen-lockfile

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ dist
1212
dist-ssr
1313
*.local
1414

15+
# Environment variables
16+
.env
17+
.env.development
18+
.env.production
19+
1520
# Editor directories and files
1621
.vscode/*
1722
!.vscode/extensions.json

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>FINI</title>
7+
<link rel="icon" type="image/png" href="/fini-line.png" />
78
</head>
89
<body>
910
<div id="root"></div>

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
1314
"@fortawesome/free-solid-svg-icons": "^7.1.0",
1415
"@fortawesome/react-fontawesome": "^3.1.0",
1516
"@vanilla-extract/css": "^1.17.4",
1617
"@vanilla-extract/recipes": "^0.5.7",
1718
"axios": "^1.12.2",
1819
"react": "^19.1.1",
1920
"react-dom": "^19.1.1",
20-
"react-router-dom": "^7.9.4"
21+
"react-router-dom": "^7.9.4",
22+
"zustand": "^5.0.9"
2123
},
2224
"devDependencies": {
2325
"@eslint/js": "^9.37.0",

pnpm-lock.yaml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/fini-line.png

655 KB
Loading

0 commit comments

Comments
 (0)