Skip to content

Commit 0b2152d

Browse files
kimisadev27wonjichoeharuyam15
authored
[fix]: 배포 api endPoint 등록 (#64)
* fix: TTSHeader.tsx 버튼 스타일 오류 수정(#30) * fix: 버그 수정 (#63) * fix: 배포 api endPoint 등록 (#63) --------- Co-authored-by: wonjichoe <wonjichoe@gmail.com> Co-authored-by: Haeun <haruyam15@gmail.com>
1 parent 3781449 commit 0b2152d

4 files changed

Lines changed: 30 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3030
AWS_REGION: ap-northeast-2 # 예: us-east-1
3131
SOURCE_DIR: ./dist # 빌드된 정적 파일 경로
32-
32+
VITE_API_BASE_URL: ${{ secrets.VITE_API_BASE_URL}}
3333
- name: Invalidate CloudFront cache
3434
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --paths "/*"
3535
env:

package-lock.json

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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"axios": "^1.7.7",
2828
"class-variance-authority": "^0.7.0",
2929
"clsx": "^2.1.1",
30+
"cmdk": "^1.0.4",
3031
"dayjs": "^1.11.13",
3132
"lucide-react": "^0.454.0",
3233
"react": "^18.3.1",

src/components/tts/TTSHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export const TTSHeader: React.FC<TTSHeaderProps> = ({
2626
<div className="flex items-center space-x-4">
2727
<span className="text-gray-500">{new Date().toLocaleDateString()}</span>
2828
<div className="flex">
29-
<Button type="submit" variant="aipark" className="w-[130px] mr-1 rounded-3xl">저장</Button>
30-
<Button type="button" variant="aipark" className="w-[130px] rounded-3xl">전체 다운로드</Button>
29+
<Button type="submit" variant="green" className="w-[130px] mr-1 rounded-3xl">저장</Button>
30+
<Button type="button" variant="green" className="w-[130px] rounded-3xl">전체 다운로드</Button>
3131
</div>
3232
</div>
3333
</div>

0 commit comments

Comments
 (0)