Skip to content

Commit

Permalink
[no-issue] feat: seo 지연으로 사이트맵 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
luciancah committed Jul 27, 2024
1 parent 04f768e commit 76716f7
Show file tree
Hide file tree
Showing 5 changed files with 1,748 additions and 12 deletions.
16 changes: 13 additions & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
origin/
# gitignore 상속: prettier --ignore-path 패턴에서 아직 여러 파일을 받지 못하는 문제 있음

node_modules/
*.yaml
*.yml
.github/
.next/
.husky/


origin/
public/

# 확장자
*.yml
*.yaml
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
"description": "nextjs 공식문서 한국어 번역",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-local": "pnpm run generate-sitemap && next build",
"build": "NODE_ENV=production pnpm run generate-sitemap && next build",
"start": "next start",
"lint": "next lint --cache",
"format": "prettier --cache --check .",
"format:fix": "prettier --cache --write --log-level warn .",
"format:fix": "prettier --cache --write --log-level warn . --ignore-path .prettierignore",
"prepare": "husky",
"lint-staged": "pnpm format:fix && pnpm lint"
"lint-staged": "pnpm format:fix && pnpm lint",
"generate-sitemap": "node scripts/generate-sitemap.mjs"
},
"repository": {
"type": "git",
Expand All @@ -24,6 +26,8 @@
"homepage": "https://github.com/nextjs-ko#readme",
"dependencies": {
"@next/third-parties": "^14.2.5",
"globby": "^14.0.2",
"gray-matter": "^4.0.3",
"next": "^13.0.6",
"next-themes": "^0.3.0",
"nextra": "latest",
Expand Down
44 changes: 38 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 76716f7

Please sign in to comment.