Vue3 + vue-cli 4.x 配置 htmlWebpackPlugin.options.title

在 vue.config.js 中添加配置:

// 修改或新增html-webpack-plugin的值,在index.html里面能读取htmlWebpackPlugin.options.title
    chainWebpack: config =>{
        config.plugin('html').tap(args => {
            args[0].title = '你想要设置的title';
            return args;
        })
    },

你可能感兴趣的:(Vue3.x,vue.js,javascript,前端)