(Vue) 새로운 Vue 프로젝트를 생성할 때 공통적으로 사용하는 것들 모음 – Vue 프로젝트 루틴
빌드, 실행, 빌드 프로젝트 프로젝트 생성 $ vue create 프로젝트이름 프로젝트 이름은 대문자를 포함할 수 없습니다. 프로젝트를 이끈다 $ npm run serve 프로젝트를 구축 $ npm run build vue.config.js 설정 기본값(vue 3.2.13부터) const { defineConfig } = require(‘@vue/cli-service’) module.exports = defineConfig({ transpileDependencies: true }) GitHub 페이지에 배포하기 위한 설정 빌드 파일 저장 경로를 docs로 변경하면 … Read more