Browse Source

vite: add Korean Translation (#11074)

HoJeong Im 1 year ago
parent
commit
9e2d0c554a
1 changed files with 22 additions and 0 deletions
  1. 22 0
      pages.ko/common/vite.md

+ 22 - 0
pages.ko/common/vite.md

@@ -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`