Language/VueJS

Vue out folder 변경

아르비스 2021. 7. 7. 14:58

Vue를 Build 하면 Dist라를 폴더에 배포된다.

 

npm run build

 

하지만 사용하고자 하는 foder가 dist가 아닌경우... 

매번 이름을 바꾸거나 고치는것이 불편한다..

 

이럴때 다음과 같이 설정하면 편하게 변경된다

 

 

[vue.config.js]

module.exports = {
  publicPath: '/<repository_name>',
  outputDir: 'dist_xx',

}

 

이렇게 변경할 경우, npm run build를 실행하면, 더이상 dist폴더가 생기지 않는다.

대신 dist_xx 폴더에 binary가 생성된다.

 

흐흐흐,. good?