We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm create vite@latest
npm create vite@latest my-vue-app -- --template vue
cd 프로젝트폴더
npm install
npm run dev
package.json
"scripts": { "start": "react-scripts start",
⇒ “scripts” 내에 start 명령어가 있다면 npm start를 사용한다.
“scripts”
start
npm start
"scripts": { "dev": "vite",
⇒ “scripts” 내에 dev 명령어가 있다면 npm run dev를 사용한다.
dev
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Vite
사용 방법
npm create vite@latest
npm create vite@latest my-vue-app -- --template vue
cd 프로젝트폴더
npm install
npm run dev
+) npm start와 npm run dev의 차이
package.json
파일 열기⇒
“scripts”
내에start
명령어가 있다면npm start
를 사용한다.⇒
“scripts”
내에dev
명령어가 있다면npm run dev
를 사용한다.The text was updated successfully, but these errors were encountered: