Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ Ci/deploy ] Develop 브랜치 Server Mock API 사용 #49

Merged
merged 7 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"rules": {
"react/react-in-jsx-scope": "off",
"no-unused-vars": "off",
"import/no-duplicates": "error",
"unused-imports/no-unused-imports": "error",
"import/no-duplicates": "warn",
"unused-imports/no-unused-imports": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"simple-import-sort/exports": "warn",
"react/display-name": "off",
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# dependencies
.env
.env.production
.env.development
/node_modules
/.pnp
.pnp.js
Expand Down
2 changes: 1 addition & 1 deletion src/api/api-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ axiosInstance.interceptors.response.use(
return response;
},
async function (error) {
const { config, response } = error;
const { config } = error;
return axios(config);
},
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const metadata: Metadata = {
description: "매일 아침마다 경제 아티클과 문제를 보내드려요!",
};

// export const runtime = 'edge'; // TBD: 개발환경과 분리
export const runtime = 'edge'; // TBD: 개발환경과 분리

const pretendard = localFont({
src: [
Expand Down
Loading