npm install -g @vue/cli
npm create vue@latest
npm run serve
npm run dev
- 자동
vue add vuetify
- 수동 (설정 필요)
npm install vuetify
npm install vite-plugin-vuetify@latest || npm install vue-cli-plugin-vuetify
npm install --save material-design-icons-iconfont
※ 자동으로 할 경우 기존 프로젝트에서는 덮어 씌어져 데이터가 삭제될 수 있음.
(package.json) Vue CLI
"scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint" }
(package.json) Vite
"scripts": { "dev": "vite", "build": "vite build", "preview": "vite preview" }
npm run build
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
json-server --watch file.json [--port 3001]
npm run db
npm install concurrently --save-dev
"scripts": {
"dev": "concurrently \"json-server --watch db.json --port 3001\" \"vite\""
}
- 'concurrently'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.
npm audit fix --force