145  
查询码:00001072
webpack打包后index.html引入文件没有引号
作者: 朱凡 于 2020年05月15日 发布在分类 / FM组 / FM_App 下,并于 2020年05月15日 编辑

webpack打包后index.html引入文件没有引号

webpack2.X解决方式

在buildwebpack.prod.conf.js找到如下配置,找到removeAttributeQuotes: true,将true改为false,重新打包即可

new HtmlWebpackPlugin({
      filename: config.build.index,
      template: 'index.html',
      inject: true,
      minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: false //将此处的true改为false
      },
      chunksSortMode: 'dependency'
    }),


webpack3.X和webpack4.X解决方式

chainWebpack: config => {
		config
			.plugin('html')
			.tap(args => {
				args[0].minify.removeAttributeQuotes = false;
				return args
			})
	}




 推荐知识

 历史版本

修改日期 修改人 备注
2020-05-15 06:35:21[当前版本] 朱凡 格式调整
2020-05-15 06:35:04 朱凡 创建版本

  目录
    知识分享平台 -V 4.8.7 -wcp