const HtmlWebpackPlugin = require('html-webpack-plugin');


...

chainWebpack: config => {
    config
        .plugin('html')
            .use(HtmlWebpackPlugin)
            .tap(options  => {
                options.BASE_URL = 'sss'
                options.template = __dirname + '/public/index.html'
                options.title = 'sssssssssssss'
            return options
            })        
    }

注意看vue-cli3引用的html-webpack-plugin默认配置

 constructor (options) {
    // Default options
    this.options = _.extend({
      template: path.join(__dirname, 'default_index.ejs'),
      templateParameters: templateParametersGenerator,
      filename: 'index.html',
      hash: false,
      inject: true,
      compile: true,
      favicon: false,
      minify: false,
      cache: true,
      showErrors: true,
      chunks: 'all',
      excludeChunks: [],
      chunksSortMode: 'auto',
      meta: {},
      title: 'Webpack App',
      xhtml: false
    }, options);
  }

 

相关文章:

  • 2021-06-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2022-12-23
  • 2022-01-07
  • 2021-05-19
猜你喜欢
  • 2021-08-16
  • 2021-08-15
  • 2021-10-30
  • 2021-08-18
  • 2021-11-11
  • 2021-11-25
  • 2021-08-19
相关资源
相似解决方案