Skip to content

Commit

Permalink
i18n(ko-KR): update sitemap.mdx (#9620)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Valladares <[email protected]>
  • Loading branch information
jsparkdev and dreyfus92 authored Oct 10, 2024
1 parent b54e6dd commit 0fa4be4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/content/docs/ko/guides/integrations-guide/sitemap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,26 @@ export default defineConfig({
...
```

### xslURL

사이트맵의 스타일을 지정하고 예쁘게 꾸밀 수 있는 XSL 스타일시트의 URL입니다.

설정된 값은 로컬 스타일시트에 대해 구성된 `site` URL에 상대적인 경로이거나 외부 스타일시트에 대한 절대 URL 링크일 수 있습니다.

```js title="astro.config.mjs" ins={8}
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';

export default defineConfig({
site: 'https://example.com',
integrations: [
sitemap({
xslURL: '/sitemap.xsl'
}),
],
});
```

## 예시

* 공식 Astro 웹사이트는 Astro Sitemap을 사용하여 [사이트맵](https://astro.build/sitemap-index.xml)을 생성합니다.
Expand Down

0 comments on commit 0fa4be4

Please sign in to comment.