You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, build will fail with the following webpack configuration:
Here the entry name contains character which will be URL encoded (by HtmlWebpackPlugin), in real-life scenario, the percent encoded names will probably come from user-added resources that is imported somewhere in the project code and pass-through HtmlWebpackPlugin)
This might be a bit of an edge cases, but
SubresourceIntegrityPlugin
cause build to fail when resource name contains percent encoded characters.This will have a higher chances of happening when
SubresourceIntegrityPlugin
is used withHtmlWebpackPlugin
; since apparentlyHtmlWebpackPlugin
is encoding the resource filenames on purpose (see: jantimon/html-webpack-plugin/issues/1771, and jantimon/html-webpack-plugin/issues/1254)For example, build will fail with the following webpack configuration:
Tested with:
The text was updated successfully, but these errors were encountered: