Spring / Gradle

//프로젝트 폴더로 이동
// build 폴더를 생성한다
gradlew build

// build 폴더를 삭제하고 다시 빌드
gradlew clean build

build/lib 폴더

Spring / Maven

<https://hgko1207.github.io/2021/03/09/springboot-1/>
option package, clean install

InteliJ / gradlew

자체 콘솔에서
./gradlew build

Vue / Vite

//프로젝트 폴더로 이동
//모듈이 있어야 함
npm run build

//dist 폴더 생성됨
//index파일 js, css 경로 상대경로로 변경
//dist 폴더명 변경 -> 폴더 째로 배포

Vue / Springboot

//SpringBoot static 폴더에 Vue 빌드
//SpringBoot jar로 빌드
//배포

//아이콘 안 나올때
//dist/index.html에 추가
<link href="<https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css>" rel="stylesheet"/>
//or
//dist/assets/에 css파일 상대경로 수정