webpack-subresource-integrity icon indicating copy to clipboard operation
webpack-subresource-integrity copied to clipboard

Webpack plugin for enabling Subresource Integrity.

Results 24 webpack-subresource-integrity issues
Sort by recently updated
recently updated
newest added

We just ported our project to Angular 14, and suddenly started getting this error: > the script element has a malformed attribute in its integrity attribute: "undefined" we tracked it...

Hello! I use `webpack-subresource-integrity` plugin together with [`webpack module federation`](https://webpack.js.org/concepts/module-federation/) and it throws an error during build process `ERROR in webpack-subresource-integrity: Asset {assetName} contains unresolved integrity placeholders`. I may be...

help wanted

Compilation breaks when `webpack-subresource-integrity` is used together with `html-webpack-preconnect-plugin` that injects `` tag. SRI plugin tries to download the given file (which in this case is not a file but...

- No functional changes - Generate ESM modules - Upgrade dependencies - Remove runtime dependency on `typed-assert` - Restructure for cleaner main directory - Improve code readability - Add more...

Hi there, I checked all the closed issues on this problem but I could not find a solution and didn't understand if this was fixed in any way. I try...

Trying to run ng build of my app and I am getting the "An unhandled exception occurred: Class extends value undefined is not a constructor or null" error. Any help...

"webpack": "5.51.1" "webpack-subresource-integrity": "5.0.0" Webpack config ``` externalsType: 'script', externals: { three: [ 'https://unpkg.com/[email protected]/build/three.min.js', 'THREE', ], }, ``` Error Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'undefined')...

Hello, This attempts to solve #176. We are trying to adapt module federation in our application. Since we are using this plugin, we cannot. Since our federated modules are all...

When I add the following to my webpack.config.js: const { SubresourceIntegrityPlugin } = require('webpack-subresource-integrity'); I get the following stack trace when trying to build. TypeError: Class extends value undefined is...

Hi, I am trying to implement this webpack plugin for our nx angular app. I added a new webpack.config.json as seen below ``` const ModuleFederationPlugin = require('webpack/lib/container/ModuleFederationPlugin'); const { SubresourceIntegrityPlugin...