vite: add Korean Translation (#11074)

pull/23/head
HoJeong Im 2023-10-19 19:43:27 +09:00 committed by GitHub
parent cc47f3526b
commit 9e2d0c554a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

22
pages.ko/common/vite.md Normal file
View File

@ -0,0 +1,22 @@
# Vite
> Vite 프로젝트 생성합니다.
> 자바스크립트 프로젝트를 빌드하는 데 사용됩니다.
> 사용 가능한 템플릿: vanilla, vanilla-ts, vue, vue-ts, react, react-ts, react-swc, react-swc-ts, preact, preact-ts, lit, lit-ts, svelte, svelte-ts.
> 더 많은 정보: <https://vitejs.dev/guide>.
- `npm` 6.x를 사용한 설정:
`npm create vite@latest my-react-app --template react-ts`
- `npm` 7 이상을 사용한 설정, 추가 이중 대시가 필요:
`npm create vite@latest my-react-app -- --template react-ts`
- `yarn`을 사용한 설정:
`yarn create vite my-react-app --template react-ts`
- `pnpm`을 사용한 설정:
`pnpm create vite my-react-app --template react-ts`