📚 Reference


📜 Chapter


🔖 Index


프로젝트 생성


1. Vite

2. yarn 1 & Vue & TypeScript

# YARN
yarn create vite {프로젝트명} --template vue-ts

# NPM
npm create vite@latest {프로젝트명} -- --template vue-ts

3. yarn berry & Vue & TypeScript

// root 폴더
yarn --version

yarn set version berry

yarn --version

// 프로젝트 폴더 생성
mkdir app

cd app

// vite 프로젝트 생성
yarn create vite
// Project name: test-project
// Select a framework >> Vue
// Select a variant >> TypeScript

cd test-project
yarn
yarn dev

// yarn.lock 파일 생성
// Linux
touch yarn.lock

// Windows
// fsutil file createnew [파일명.확장자] [파일사이즈]
fsutil file createnew yarn.lock 0

// 설치
yarn

// 실행
yarn dev

4. vue-cli