feat: Pretendard 폰트 적용 및 DB 스키마 완성
- Pretendard 폰트로 변경 (CDN) - albums, tracks 테이블 생성 및 데이터 삽입 - 트랙별 작사/작곡/편곡/설명 정보 추가 - 모든 테이블 및 컬럼에 COMMENT 추가
This commit is contained in:
parent
4190a71ab6
commit
91270c2c8b
6 changed files with 2764 additions and 5 deletions
15
docker-compose.dev.yml
Normal file
15
docker-compose.dev.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
services:
|
||||||
|
fromis9-web:
|
||||||
|
image: node:20-alpine
|
||||||
|
container_name: fromis9-web
|
||||||
|
working_dir: /app
|
||||||
|
command: sh -c "npm install && npm run dev -- --host 0.0.0.0 --port 80"
|
||||||
|
volumes:
|
||||||
|
- ./frontend:/app
|
||||||
|
networks:
|
||||||
|
- app
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
networks:
|
||||||
|
app:
|
||||||
|
external: true
|
||||||
|
|
@ -4,11 +4,11 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>fromis_9 - 프로미스나인</title>
|
<title>fromis_9 - 프로미스나인</title>
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
||||||
<link
|
<link
|
||||||
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap"
|
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
|
as="style"
|
||||||
|
crossorigin
|
||||||
|
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"
|
||||||
/>
|
/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
2744
frontend/package-lock.json
generated
Normal file
2744
frontend/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -8,7 +8,6 @@ html {
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "Noto Sans KR", sans-serif;
|
|
||||||
background-color: #fafafa;
|
background-color: #fafafa;
|
||||||
color: #1a1a1a;
|
color: #1a1a1a;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ export default {
|
||||||
accent: "#FFD700",
|
accent: "#FFD700",
|
||||||
},
|
},
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
sans: ['"Noto Sans KR"', "sans-serif"],
|
sans: ["Pretendard", "Inter", "sans-serif"],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,6 @@ export default defineConfig({
|
||||||
server: {
|
server: {
|
||||||
host: true,
|
host: true,
|
||||||
port: 5173,
|
port: 5173,
|
||||||
|
allowedHosts: ["fromis9.caadiq.co.kr"],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue