diff --git a/frontend/.idea/.gitignore b/frontend/.idea/.gitignore
new file mode 100644
index 0000000..c3f502a
--- /dev/null
+++ b/frontend/.idea/.gitignore
@@ -0,0 +1,8 @@
+# 디폴트 무시된 파일
+/shelf/
+/workspace.xml
+# 에디터 기반 HTTP 클라이언트 요청
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/frontend/.idea/frontend.iml b/frontend/.idea/frontend.iml
new file mode 100644
index 0000000..24643cc
--- /dev/null
+++ b/frontend/.idea/frontend.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/.idea/inspectionProfiles/Project_Default.xml b/frontend/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..03d9549
--- /dev/null
+++ b/frontend/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/.idea/modules.xml b/frontend/.idea/modules.xml
new file mode 100644
index 0000000..f3d93d7
--- /dev/null
+++ b/frontend/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/.idea/vcs.xml b/frontend/.idea/vcs.xml
new file mode 100644
index 0000000..6c0b863
--- /dev/null
+++ b/frontend/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/next.config.ts.dev b/frontend/next.config.ts.dev
new file mode 100644
index 0000000..9f2ccf9
--- /dev/null
+++ b/frontend/next.config.ts.dev
@@ -0,0 +1,22 @@
+import type { NextConfig } from "next";
+
+// Next.js 핵심 설정 파일, Next.js가 시작할 때 이 파일을 찾아서 읽음
+// 여기에 Next.js 설정 옵션을 정의할 수 있음
+const nextConfig: NextConfig = {
+ eslint: {
+ ignoreDuringBuilds: true, // 빌드 시 ESLint warning 무시
+ },
+ typescript: {
+ ignoreBuildErrors: true, // 빌드 시 TypeScript 에러 무시 (임시)
+ },
+ async rewrites() {
+ return [
+ {
+ source: '/backend/api/:path*', // /api가 붙은 모든 요청
+ destination: 'http://192.168.11.249:4000/:path*', // 백엔드 API로 요청
+ },
+ ];
+ },
+};
+
+export default nextConfig;