-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(common): 봉사자, 보호소 프로젝트에 axios 의존성 추가 * chore(common): eslint, prettier 수정 * chore(common): 봉사자, 보호소 의존성 추가 * chore(common): .nvmrc 추가
- Loading branch information
Showing
14 changed files
with
323 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
--- | ||
name: "♻️ 리팩토링 요청" | ||
name: '♻️ 리팩토링 요청' | ||
about: 변경 혹은 개선해야 되는 문제를 작성해 주세요 | ||
title: 'refactor: ' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 개선해야 되는 코드 혹은 기능에 대해서 적어주세요 | ||
|
||
개선해야 될 코드에 대한 명확하고 간단한 설명 | ||
|
||
## 원하는 개선 방향 | ||
|
||
개선해야 되는 간단한 이유 혹은 개선 후 장점에 대해 적어주세요 | ||
|
||
## 생각 중인 기능 추가 방안 | ||
|
||
해결책으로 간단하게 생각한 개선 방법에 대해 적어주세요 | ||
|
||
## ETC | ||
|
||
스크린샷이나 기능 등 추가 자료를 기술해 주세요 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
--- | ||
name: "✨ 기능 추가 요청" | ||
name: '✨ 기능 추가 요청' | ||
about: 구현하려는 새로운 기능을 요청 | ||
title: 'feat: ' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## 추가하려는 기능이 어떠한 문제 혹은 기능과 연관되어 있나요? | ||
|
||
문제가 무엇인지에 대한 명확하고 간결한 설명을 적어주세요 | ||
|
||
## 원하는 기능 추가 | ||
|
||
추가하려는 기능을 명확하고 간결하게 설명해주세요 | ||
|
||
- [ ] todo | ||
- [ ] todo | ||
|
||
## 생각 중인 기능 추가 방안 | ||
|
||
해결책으로 간단하게 생각한 기능의 방향 혹은 컴포넌트를 설명해주세요 | ||
|
||
## ETC | ||
|
||
스크린샷이나 기능 등 추가 자료를 기술해 주세요 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
## 📌 이슈번호 <!-- 이슈번호 혹은 참조를 적어주세요 --> | ||
|
||
- close #이슈번호 | ||
|
||
## 📗 구현 내용 <!-- 이슈에 작성한 작업 외 다른 작업을 진행했다면 작성해주세요 --> | ||
|
||
## 📖 구현 스크린샷 <!-- .gif 등을 사용하여 간단하게 보여주세요 --> | ||
|
||
## 📖 PR 포인트 & 궁금한 점 <!-- 리뷰어 분들이 집중적으로 보셨으면 하는 내용을 적어주세요 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v20.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import React from 'react' | ||
import ReactDOM from 'react-dom/client' | ||
import App from './App.tsx' | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom/client'; | ||
|
||
import App from './App.tsx'; | ||
|
||
ReactDOM.createRoot(document.getElementById('root')!).render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode>, | ||
) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { defineConfig } from 'vite' | ||
import react from '@vitejs/plugin-react' | ||
import react from '@vitejs/plugin-react'; | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
plugins: [react()], | ||
}) | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { defineConfig } from 'vite' | ||
import react from '@vitejs/plugin-react' | ||
import react from '@vitejs/plugin-react'; | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config/ | ||
export default defineConfig({ | ||
plugins: [react()], | ||
}) | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
81a0f9a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
anifriends-frontend-volunteer – ./apps/volunteer
anifriends-frontend-volunteer-git-main-dongja.vercel.app
anifriends-frontend-volunteer-dongja.vercel.app
anifriends-frontend-volunteer.vercel.app