Skip to content

Commit

Permalink
i18n(ko-KR): update imports.mdx (#9731)
Browse files Browse the repository at this point in the history
* i18n(ko-KR): update `imports.mdx`

* fix: update wrong link

* Update src/content/docs/ko/guides/imports.mdx

Co-authored-by: Paul Valladares <[email protected]>

---------

Co-authored-by: Paul Valladares <[email protected]>
Co-authored-by: Yan <[email protected]>
  • Loading branch information
3 people authored Oct 18, 2024
1 parent 2fe1e32 commit 289939b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/content/docs/ko/guides/imports.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ import './style.css';

Astro는 CSS 파일을 애플리케이션으로 직접 가져오는 것을 지원합니다. 가져온 스타일은 내보내기를 노출하지 않지만 스타일을 가져오면 해당 스타일이 페이지에 자동으로 추가됩니다. 이는 기본적으로 모든 CSS 파일에 대해 작동하며 플러그인을 통해 Sass & Less와 같은 CSS로 컴파일 언어를 지원할 수 있습니다.

<ReadMore>[스타일링 가이드](/ko/guides/styling/#고급)에서 CSS 파일에 대한 직접 URL 참조 또는 문자열로 CSS 가져오기 등 고급 CSS 가져오기 사용 사례에 대해 자세히 알아보세요.</ReadMore>

### CSS 모듈

```jsx
Expand Down Expand Up @@ -134,6 +136,8 @@ import txtReference from './words.txt'; // txtReference === '/src/words.txt'

[프로젝트 구조 페이지](/ko/basics/project-structure/#public)에 설명된 대로 `public/` 폴더에 이미지를 배치하는 것도 유용할 수 있습니다.

<ReadMore>Vite 가져오기 매개변수 (예: `?url`, `?raw`) 추가에 대한 자세한 내용은 [Vite의 정적 자산 처리 가이드](https://ko.vite.dev/guide/assets.html)를 참조하세요.</ReadMore>

:::note
접근성을 위해 `<img>` 태그에 **대체 텍스트**를 추가하는 것이 좋습니다! 이미지 요소에 `alt="유용한 설명"` 속성을 추가하는 것을 잊지 마세요. 이미지가 순전히 장식용인 경우 속성을 비워 둘 수 있습니다.
:::
Expand Down

0 comments on commit 289939b

Please sign in to comment.