Skip to content

Commit f874f75

Browse files
authored
Merge pull request #336 from Team-TenTen/refactor/#335/fetch
불필요한 Refetch 감소 작업
2 parents e703908 + 48255f1 commit f874f75

File tree

102 files changed

+1819
-1478
lines changed

Some content is hidden

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

102 files changed

+1819
-1478
lines changed

next.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ const withPlugins = require('next-compose-plugins')
44

55
const withPWA = require('next-pwa')({
66
dest: 'public',
7+
disable: process.env.NODE_ENV === 'development',
8+
register: true,
9+
skipWaiting: true,
710
})
811

912
const withBundleAnalyzer = require('@next/bundle-analyzer')({
@@ -15,7 +18,10 @@ const nextConfig = {
1518
reactStrictMode: false,
1619
images: {
1720
minimumCacheTTL: 1 * 60 * 60 * 24 * 365,
18-
domains: ['linkhub-s3-2025.s3.ap-northeast-2.amazonaws.com'],
21+
domains: [
22+
'linkhub-s3-2025.s3.ap-northeast-2.amazonaws.com',
23+
'linkhub-s3.s3.ap-northeast-2.amazonaws.com',
24+
],
1925
formats: ['image/avif', 'image/webp'],
2026
remotePatterns: [
2127
{

package-lock.json

Lines changed: 182 additions & 29 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
@@ -18,6 +18,7 @@
1818
"@next/font": "^14.2.5",
1919
"@tanstack/react-query": "^5.8.4",
2020
"@types/js-cookie": "^3.0.6",
21+
"axios": "^1.8.2",
2122
"browser-image-compression": "^2.0.2",
2223
"dayjs": "^1.11.10",
2324
"js-cookie": "^3.0.5",

0 commit comments

Comments
 (0)