当前位置: 代码迷 >> 综合 >> Vue3 + vue-cli 4.x 配置 htmlWebpackPlugin.options.title
  详细解决方案

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

热度:3   发布时间:2023-12-15 04:26:19.0

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

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

 

  相关解决方案