Skip to content

Commit c4204a9

Browse files
committed
feat: Build github page (#19)
1 parent 97adc88 commit c4204a9

22 files changed

Lines changed: 2536 additions & 0 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ tmp/
1616

1717
# gitbook
1818
_book/
19+
20+
# site (React docs)
21+
site/node_modules/

.nojekyll

Whitespace-only changes.

docs/assets/index-B2cGX9uu.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/index-DtyRKQd1.js

Lines changed: 105 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="ko">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>KR-WordRank – 비지도 한국어 단어·키워드 추출</title>
7+
<script type="module" crossorigin src="/KR-WordRank/assets/index-DtyRKQd1.js"></script>
8+
<link rel="stylesheet" crossorigin href="/KR-WordRank/assets/index-B2cGX9uu.css">
9+
</head>
10+
<body>
11+
<div id="root"></div>
12+
</body>
13+
</html>

site/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# KR-WordRank GitHub Pages (React + TypeScript)
2+
3+
이 디렉터리는 [GitHub Pages](https://pages.github.com/)용 문서 사이트 소스입니다.
4+
5+
## 개발
6+
7+
```bash
8+
cd site
9+
npm install
10+
npm run dev
11+
```
12+
13+
## 빌드 (결과물은 `../docs`)
14+
15+
```bash
16+
cd site
17+
npm run build
18+
```
19+
20+
빌드 후 `docs/` 디렉터리에 정적 파일이 생성됩니다. GitHub 저장소 설정에서 **Pages → Source: Deploy from a branch****Branch: main****Folder: /docs** 로 지정하면 `https://<username>.github.io/KR-WordRank/` 에서 확인할 수 있습니다.

site/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="ko">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>KR-WordRank – 비지도 한국어 단어·키워드 추출</title>
7+
</head>
8+
<body>
9+
<div id="root"></div>
10+
<script type="module" src="/src/main.tsx"></script>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)