如何使用 Vue Cli 3 重命名 index.html 中的 app.js 文件

How to rename app.js file in index.html using VueCli 3

VueCli3 自动在index.html中添加app.js。我想将该 app.js 文件重命名为其他名称。可以这样做吗?

只需在项目根目录创建一个名为vue.config.js的文件,在configureWebpack属性中,您可以设置输出js文件的名称。

vue.config.js

module.exports = {

    configureWebpack: {

        output: {

            filename: "appname.js"

        },

    },

}