Skip to content

Commit 2c886e3

Browse files
committed
chore: Initial commit
0 parents  commit 2c886e3

Some content is hidden

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

76 files changed

+20027
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
labels: ['Discussion']
2+
body:
3+
- type: markdown
4+
attributes:
5+
value: |
6+
## ✏️ 고민
7+
배경, 개선 과정, 목표와 같은 내용을 포함해 작성해주시면, 더 유용한 답변을 받을 수 있어요.
8+
9+
- type: textarea
10+
id: summary
11+
attributes:
12+
label: 고민
13+
validations:
14+
required: true
15+
16+
- type: markdown
17+
attributes:
18+
value: |
19+
## 💻 코드
20+
맥락을 이해할 수 있도록, 해당 코드와 연관된 부분도 함께 작성해주세요.
21+
22+
- type: textarea
23+
id: code
24+
attributes:
25+
label: 코드
26+
value: |
27+
```tsx
28+
```
29+
validations:
30+
required: true
31+
32+
- type: markdown
33+
attributes:
34+
value: |
35+
## 🖼️ 참고 이미지(또는 자료)
36+
문제를 더 명확히 전달할 수 있는 스크린샷, 다이어그램, 또는 링크를 추가해주세요.
37+
38+
- type: textarea
39+
id: resources
40+
attributes:
41+
label: 참고 자료
42+
value: |
43+
- 스크린샷:
44+
- 다이어그램:
45+
- 링크 (ex. 피그마, 노션 등):
46+
validations:
47+
required: false

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
node_modules
2+
.DS_Store
3+
.next
4+
out
5+
*.log
6+
dist
7+
.idea/
8+
*.map
9+
.env
10+
esm
11+
.rpt2_cache
12+
umd
13+
.toss-es5-cache.json
14+
code-owners.json
15+
.linaria-cache
16+
.pnp.*
17+
.yarn/*
18+
# !.yarn/cache
19+
!.yarn/releases
20+
!.yarn/plugins
21+
!.yarn/sdks
22+
!.yarn/versions
23+
!.yarn/patches
24+
**/*/nft-analysis.json
25+
*.tsbuildinfo
26+
.eslintcache
27+
.i18n
28+
29+
# asset-manifest.json 는 빌드 결과물이라 제외
30+
asset-manifest.json
31+
assets-preload.html
32+
_assetManifest.json
33+
__assetManifest.json
34+
35+
# local 개발용
36+
.next-local
37+
.toss
38+
39+
#rn
40+
.swc
41+
42+
.tosscore
43+
.vitepress/cache
44+
.vitepress/dist
45+
46+
config.mts.*.js

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22

0 commit comments

Comments
 (0)