Skip to content

Commit 2acf41e

Browse files
authored
Merge pull request #96 from YAPP-Github/feature/PRODUCT-210
2 parents 63eda85 + e161ff6 commit 2acf41e

38 files changed

+965
-21
lines changed

next.config.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,23 @@ const nextConfig: NextConfig = {
1111
});
1212
return config;
1313
},
14+
15+
images: {
16+
remotePatterns: [
17+
{
18+
protocol: "https",
19+
hostname: "eatda-storage-dev.s3.ap-northeast-2.amazonaws.com",
20+
port: "",
21+
pathname: "/**",
22+
},
23+
{
24+
protocol: "https",
25+
hostname: "eatda-storage-prod.s3.ap-northeast-2.amazonaws.com",
26+
port: "",
27+
pathname: "/**",
28+
},
29+
],
30+
},
1431
};
1532

1633
module.exports = withVanillaExtract(nextConfig);

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,23 @@
2020
"@hookform/resolvers": "^5.1.1",
2121
"@radix-ui/react-alert-dialog": "^1.1.14",
2222
"@radix-ui/react-dialog": "^1.1.14",
23+
"@suspensive/react": "^3.3.2",
2324
"@tanstack/react-query": "^5.77.0",
2425
"@tanstack/react-query-devtools": "^5.77.0",
2526
"@use-funnel/browser": "^0.0.15",
2627
"@vanilla-extract/css": "^1.17.2",
2728
"@vanilla-extract/dynamic": "^2.1.5",
2829
"@vanilla-extract/recipes": "^0.5.7",
30+
"es-toolkit": "^1.39.7",
2931
"iron-session": "^8.0.4",
3032
"ky": "1.7.5",
3133
"next": "15.3.2",
3234
"react": "^19.0.0",
3335
"react-dom": "^19.0.0",
3436
"react-hook-form": "^7.58.1",
3537
"react-simplikit": "^0.0.40",
38+
"react-slick": "^0.30.3",
39+
"slick-carousel": "^1.8.1",
3640
"vaul": "^1.1.2",
3741
"zod": "^3.25.75"
3842
},
@@ -55,6 +59,7 @@
5559
"@types/node": "^20",
5660
"@types/react": "^19",
5761
"@types/react-dom": "^19",
62+
"@types/react-slick": "^0.23.13",
5863
"@vanilla-extract/next-plugin": "^2.4.14",
5964
"@vanilla-extract/webpack-plugin": "^2.3.22",
6065
"@vitejs/plugin-react": "^4.5.0",

0 commit comments

Comments
 (0)