programing

VueCli 3을 사용하여 index.html의 app.js 파일 이름을 변경하는 방법

prostudy 2022. 7. 2. 11:46
반응형

VueCli 3을 사용하여 index.html의 app.js 파일 이름을 변경하는 방법

VueCli3은 index.html에 app.js를 자동으로 추가합니다.그 app.js 파일의 이름을 바꾸고 싶습니다.그렇게 할 수 있을까요?

파일 생성만 하면 됩니다.vue.config.js프로젝트 루트 디렉토리와configureWebpackproperty 출력 js 파일의 이름을 설정할 수 있습니다.

vue.config.module

module.exports = {

    configureWebpack: {

        output: {

            filename: "appname.js"

        },

    },

}

언급URL : https://stackoverflow.com/questions/54516654/how-to-rename-app-js-file-in-index-html-using-vuecli-3

반응형