webpack打包配置禁止html標籤所有轉爲小寫

用webpack打包頁面,發現html中特別寫的用來給後端識別的大寫標籤所有被轉爲了小寫標籤,這時候須要將加一個配置 ,caseSensitive:true ,禁止大小寫轉換。html

webpack配置:webpack

 {
                test: /\.html$/,
                use: [
                    {
                        loader: "html-loader",
                        options: {
                            minimize: true,// 加載器切換到優化模式,啓用壓縮。
                            caseSensitive:true // 以區分大小寫的方式處理屬性(對於自定義HTML標記頗有用),即禁止html標籤所有轉爲小寫

                        }
                    }
                ]
            }

參考文檔連接:git

https://github.com/kangax/html-minifier#options-quick-referencegithub

https://github.com/jantimon/html-webpack-plugin#optionsweb

相關文章
相關標籤/搜索