码迷,mamicode.com
首页 > Web开发 > 详细

React index.html引入script时 src中的斜杠都变成了空格,并且还多出了script标签 导致无法加载

时间:2021-05-24 05:26:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ack   webp   inf   mini   conf   app   导致   开发   htm   

在使用react开发项目的时候 遇到了一个奇怪的问题,在index.html中引入script标签 script标签的src属性会把 / 斜杠变成空格,并且在body标签结尾追加script标签。

就像这样

技术图片

 

我发现 HtmlWebpackPlugin 还内置了html-minifier插件 

解决方法

在webpack.config.dev.js中 找到

plugins: [

new HtmlWebpackPlugin({
      inject: true,
      template: paths.appHtml,
  // 在这里 追加一行代码
      minify: {},
    }),

]

 

React index.html引入script时 src中的斜杠都变成了空格,并且还多出了script标签 导致无法加载

标签:ack   webp   inf   mini   conf   app   导致   开发   htm   

原文地址:https://www.cnblogs.com/MainActivity/p/14754919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!