Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
08f1c3e
chore: axios 설치
dudwns Mar 12, 2025
d17c68b
refactor: Query Key 상수로 분리
dudwns Mar 13, 2025
b7ec2f8
refactor: 링크 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 13, 2025
170176c
refactor: 스페이스 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 14, 2025
4654237
refactor: 멤버 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 14, 2025
5db4783
refactor: 댓글 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 14, 2025
1d95455
refactor: 알림 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 14, 2025
f8ec756
refactor: 이메일 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 14, 2025
6584e5c
chore: 개빌 환경에서 pwa가 실행되지 않도록 설정
dudwns Mar 14, 2025
d18ed15
feat: 비공개 스페이스가 접속되지 않는 문제 수정
dudwns Mar 15, 2025
10f7e23
refactor: 메타데이터 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 15, 2025
6ceb235
feat: 프로필 수정 시 사이드바 프로필 정보도 변경되도록 수정
dudwns Mar 15, 2025
2e6880b
refactor: auth 관련 fetch 함수를 TanStack Query로 리팩토링
dudwns Mar 15, 2025
03ea27e
refactor: API 라우터 경로 변경
dudwns Mar 15, 2025
7c852c7
feat: API 요청 경로를 Next.js API 라우트로 변경
dudwns Mar 15, 2025
74d0b49
feat: 옵셔널 체이닝 추가
dudwns Mar 15, 2025
e67c78f
refactor: members 네이밍을 users로 변경
dudwns Mar 15, 2025
1cce1c6
chore: 불필요한 코드 삭제
dudwns Mar 15, 2025
3f10b35
refactor: meta 네이밍을 metaData로 변경
dudwns Mar 15, 2025
582e765
feat: 옵셔널 체이닝 추가
dudwns Mar 15, 2025
40472a7
feat: 프로필 정보를 서버 패치로 변경
dudwns Mar 15, 2025
e1992c7
chore: 불필요한 코드 삭제
dudwns Mar 15, 2025
18cf43d
feat: 서버 패치 함수 추가
dudwns Mar 15, 2025
b95239b
chore: API 라우터 경로 변경
dudwns Mar 15, 2025
3b278d4
refactor: FetchAPI와 FetchServerAPI 클래스를 함수형으로 변경
dudwns Mar 15, 2025
ae803e9
refactor: API 호출 방식을 fetchAPI 유틸리티 함수로 변경
dudwns Mar 17, 2025
45c2d00
feat: LinkListProps 타입 수정
dudwns Mar 17, 2025
ecccfbc
refactor: 프로필 서버 패치 함수 네이밍 및 경로 변경
dudwns Mar 17, 2025
f3e338f
feat: 프로필 수정 mutation을 동기적으로 처리하도록 변경
dudwns Mar 17, 2025
48255f1
chore: 불필요한 파일 삭제
dudwns Mar 17, 2025
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
8 changes: 7 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const withPlugins = require('next-compose-plugins')

const withPWA = require('next-pwa')({
dest: 'public',
disable: process.env.NODE_ENV === 'development',
register: true,
skipWaiting: true,
})

const withBundleAnalyzer = require('@next/bundle-analyzer')({
Expand All @@ -15,7 +18,10 @@ const nextConfig = {
reactStrictMode: false,
images: {
minimumCacheTTL: 1 * 60 * 60 * 24 * 365,
domains: ['linkhub-s3-2025.s3.ap-northeast-2.amazonaws.com'],
domains: [
'linkhub-s3-2025.s3.ap-northeast-2.amazonaws.com',
'linkhub-s3.s3.ap-northeast-2.amazonaws.com',
],
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
Expand Down
211 changes: 182 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@next/font": "^14.2.5",
"@tanstack/react-query": "^5.8.4",
"@types/js-cookie": "^3.0.6",
"axios": "^1.8.2",
"browser-image-compression": "^2.0.2",
"dayjs": "^1.11.10",
"js-cookie": "^3.0.5",
Expand Down
Loading