개발용 설정

This commit is contained in:
2025-12-10 13:36:34 +09:00
parent f70b9b386d
commit bc1faf4e2b
6 changed files with 62 additions and 0 deletions

8
frontend/.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,8 @@
# 디폴트 무시된 파일
/shelf/
/workspace.xml
# 에디터 기반 HTTP 클라이언트 요청
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

12
frontend/.idea/frontend.iml generated Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>

8
frontend/.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/frontend.iml" filepath="$PROJECT_DIR$/.idea/frontend.iml" />
</modules>
</component>
</project>

6
frontend/.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

View File

@@ -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;