From 25e0c1789db4fb6f8c5d8f4559b5e662a417c38d Mon Sep 17 00:00:00 2001 From: mtm1018 Date: Tue, 23 Sep 2025 16:09:31 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[style]=20like=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/components/like/like.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/shared/components/like/like.tsx b/src/shared/components/like/like.tsx index b130b26..6634413 100644 --- a/src/shared/components/like/like.tsx +++ b/src/shared/components/like/like.tsx @@ -1,6 +1,4 @@ function like() { - return ( -
like
- ) + return
like
; } -export default like \ No newline at end of file +export default like; From f79c092a50e7a457150a85db55e56e9fe64e87cf Mon Sep 17 00:00:00 2001 From: mtm1018 Date: Tue, 23 Sep 2025 16:16:25 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[chore]=20next.config=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.ts | 14 ++++++-------- src/app/design-system/page.tsx | 4 ++++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/next.config.ts b/next.config.ts index c71cf2b..a5da119 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,15 +1,13 @@ - import type { NextConfig } from 'next'; - const nextConfig: NextConfig = { // TurboPack 설정 experimental: { turbo: { rules: { - '.svg': { + '*.svg': { loaders: ['@svgr/webpack'], - as: '.js', + as: '*.js', }, }, }, @@ -22,11 +20,11 @@ const nextConfig: NextConfig = { config.module.rules.push( { ...fileLoaderRule, - test: /.svg$/i, + test: /\.svg$/i, resourceQuery: /url/, }, { - test: /.svg$/i, + test: /\.svg$/i, issuer: fileLoaderRule.issuer, resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] }, use: [ @@ -40,9 +38,9 @@ const nextConfig: NextConfig = { ], } ); - fileLoaderRule.exclude = /.svg$/i; + fileLoaderRule.exclude = /\.svg$/i; return config; }, }; - + export default nextConfig; diff --git a/src/app/design-system/page.tsx b/src/app/design-system/page.tsx index b542ede..4cb63ff 100644 --- a/src/app/design-system/page.tsx +++ b/src/app/design-system/page.tsx @@ -134,6 +134,10 @@ function Page() { /> + +
+

Button

+
); }