Skip to content

Commit

Permalink
docs(assets): update static asset URL transformation in dev
Browse files Browse the repository at this point in the history
resolved #1065
  • Loading branch information
Gumball12 committed Dec 7, 2024
1 parent 7f4d2f9 commit c0eec79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/assets.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import imgUrl from './img.png'
document.getElementById('hero-img').src = imgUrl
```

예를 들어, `imgUrl` 객체는 개발 시 `/img.png` 값으로 할당되겠으나, 실제 프로덕션 버전에서는 `/assets/img.2d8efhg.png`와 같은 값이 할당됩니다. (여기서 `2d8efhg`는 해시 값을 의미합니다. - 옮긴이)
예를 들어 `imgUrl` 객체는 개발 시 `/src/img.png` 값으로 할당되지만, 프로덕션에서는 `/assets/img.2d8efhg.png`와 같은 값이 할당됩니다.

Webpack의 `file-loader`와 비슷한데, 하나 차이점이 있다면 Vite는 절대 경로와 상대 경로 둘 다 사용할 수 있습니다.

Expand Down

0 comments on commit c0eec79

Please sign in to comment.