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;
        })
},

猜你喜欢

转载自blog.csdn.net/qq_43248623/article/details/112312275
今日推荐