-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
45 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,26 +1,17 @@ | ||
/** @type {import('next-sitemap').IConfig} */ | ||
|
||
module.exports = { | ||
siteUrl: 'https://qqqq.world', // .게시하는 site의 url | ||
generateRobotsTxt: true, // robots.txt generate 여부 (자동생성 여부) | ||
sitemapSize: 7000, // sitemap별 최대 크기 (최대 크기가 넘어갈 경우 복수개의 sitemap으로 분리됨) | ||
changefreq: 'daily', // 페이지 주소 변경 빈도 (검색엔진에 제공됨) - always, daily, hourly, monthly, never, weekly, yearly 중 택 1 | ||
priority: 1, // 페이지 주소 우선순위 (검색엔진에 제공됨, 우선순위가 높은 순서대로 크롤링함) | ||
exclude: [ | ||
'/exclude/review', // 페이지 주소 하나만 제외시키는 경우 | ||
'/exclude/**', // 하위 주소 전체를 제외시키는 경우 | ||
], // sitemap 등록 제외 페이지 주소 | ||
siteUrl: 'https://qqqq.world', | ||
generateRobotsTxt: true, | ||
sitemapSize: 7000, | ||
changefreq: 'daily', | ||
priority: 1, | ||
robotsTxtOptions: { | ||
// 정책 설정 | ||
policies: [ | ||
{ | ||
userAgent: '*', // 모든 agent 허용 | ||
allow: '/', // 모든 페이지 주소 크롤링 허용 | ||
disallow: [ | ||
'/exclude', // exclude로 시작하는 페이지 주소 크롤링 금지 | ||
] | ||
userAgent: '*', | ||
allow: '/', | ||
}, | ||
// 추가 정책이 필요할 경우 배열 요소로 추가 작성 | ||
] | ||
} // robots.txt 옵션 설정 | ||
} | ||
} |
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 was deleted.
Oops, something went wrong.