html-webpack-plugin不輸出script標籤的方法

那就是修改源碼

約550行:this

if (!this.options.disableScript) {
      if (this.options.inject === 'head') {
        head = head.concat(scripts);
      } else {
        body = body.concat(scripts);
      }
    }

而後這樣使用:code

new HtmlWebpackPlugin({
      disableScript: true,
      //...
    })
相關文章
相關標籤/搜索