【发布时间】:2019-02-04 12:58:11
【问题描述】:
VueCli3 会在 index.html 中自动添加 app.js。我想将该 app.js 文件重命名为其他名称。有可能吗?
【问题讨论】:
VueCli3 会在 index.html 中自动添加 app.js。我想将该 app.js 文件重命名为其他名称。有可能吗?
【问题讨论】:
只需在项目根目录中创建一个名为vue.config.js 的文件,并在configureWebpack 属性中设置输出js 文件的名称。
vue.config.js
module.exports = {
configureWebpack: {
output: {
filename: "appname.js"
},
},
}
【讨论】: