Skip to content

Commit 4f8a9cb

Browse files
authored
Merge pull request #75 from geulDa/revert-66-develop
Revert "🌐Deploy: 배포 버전1"
2 parents 592bc71 + 50f6cdd commit 4f8a9cb

Some content is hidden

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

85 files changed

+41
-4799
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/task-request.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/labeler.yml

Lines changed: 0 additions & 110 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/auto-assign.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Next.js CI/CD with Vercel
33
on:
44
push:
55
branches: [develop, main]
6-
pull_request_target:
7-
branches: [develop, main]
86

97
jobs:
108
build-and-deploy:

.github/workflows/pr-labeler.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@
99
- **API:** Axios 설치 및 전역 인스턴스 (instance.ts) 정의
1010
- **인증:** 토큰 자동 재발급(401 처리) 및 경쟁 조건(Race Condition) 방지 로직 구현
1111
- **폼 관리:** React Hook Form 설치
12-

next.config.ts

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,8 @@
1-
import path from 'path';
2-
import type { NextConfig } from 'next';
3-
4-
const ICON_DIR = path.resolve(__dirname, 'src/shared/icons/source');
1+
import type { NextConfig } from "next";
52

63
const nextConfig: NextConfig = {
4+
/* config options here */
75
reactStrictMode: true,
8-
webpack: (config) => {
9-
const svgRule = config.module.rules.find(
10-
// @ts-ignore
11-
(rule) => rule.test && rule.test.test && rule.test.test('.svg'),
12-
);
13-
if (svgRule) {
14-
// @ts-ignore
15-
svgRule.exclude = [...(svgRule.exclude || []), ICON_DIR];
16-
}
17-
18-
config.module.rules.push({
19-
test: /\.svg$/,
20-
include: [ICON_DIR],
21-
use: [
22-
{
23-
loader: require.resolve('svg-sprite-loader'),
24-
options: {
25-
symbolId: 'icon-[name]',
26-
extract: false,
27-
},
28-
},
29-
],
30-
});
31-
32-
return config;
33-
},
346
};
357

368
export default nextConfig;

0 commit comments

Comments
 (0)