-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix fix fix fix fix:
- Loading branch information
Showing
42 changed files
with
3,779 additions
and
1,141 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
* @eungyeole |
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,2 +1,2 @@ | ||
.vercel | ||
node_modules | ||
.vercel |
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,62 +1,64 @@ | ||
# velog-readme-stats란? | ||
|
||
> markdown에서 나의 velog의 정보를 가져올수 있는 도구입니다. | ||
# Velog 뱃지 | ||
|
||
> ?name= 의 값을 변경하세요 | ||
``` | ||
[](https://velog.io/@eungyeole) | ||
[](https://velog.io/@eungyeole) | ||
``` | ||
[](https://velog.io/@eungyeole) | ||
|
||
[](https://velog.io/@eungyeole) | ||
|
||
# 최신 글 가져오기 | ||
|
||
> ?name= 의 값을 변경하세요 | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
``` | ||
|
||
[](https://github.com/eungyeole/velog-readme-stats) | ||
|
||
## 특정태그를 가진 최신글 가져오기 | ||
> Option : ```&tag``` | ||
|
||
> Option : `&tag` | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
|
||
## 카드색 바꾸기 | ||
> Option : ```&color``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
|
||
Color Option | ||
* dark | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
## 특정 제목을 가진 글 | ||
|
||
## 특정 제목을 가진 글 | ||
> Option : ```&slug``` | ||
> Option : `&slug` | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
``` | ||
[](https://github.com/eungyeole/velog-readme-stats) | ||
|
||
[](https://github.com/eungyeole/velog-readme-stats) | ||
|
||
## 상태카드와 최신글 연결하기 | ||
> Option : name, tag | ||
카드클릭시 최신글로 리다이렉트 합니다. | ||
|
||
> Option : name, tag | ||
> 카드클릭시 최신글로 리다이렉트 합니다. | ||
``` | ||
https://velog-readme-stats.vercel.app/api/redirect?name=eungyeole&tag=github | ||
``` | ||
|
||
[](https://velog-readme-stats.vercel.app/api/redirect?name=eungyeole&tag=github) | ||
|
||
|
||
# 최신 글 목록 가져오기 (Beta) | ||
|
||
> ?name= 의 값을 변경하세요 | ||
``` | ||
[](https://velog.io/@eungyeole) | ||
[](https://velog.io/@eungyeole) | ||
``` | ||
[](https://velog.io/@eungyeole) | ||
|
||
[](https://velog.io/@eungyeole) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
import app from "../src/app"; | ||
|
||
import { VercelRequest, VercelResponse } from "@vercel/node"; | ||
|
||
const serverless = async (req: VercelRequest, res: VercelResponse) => { | ||
await app.ready(); | ||
|
||
return app.server.emit("request", req, res); | ||
}; | ||
|
||
export default serverless; |
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.