> For the complete documentation index, see [llms.txt](https://themgoncalves.gitbook.io/react-loadable-ssr-aadon/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://themgoncalves.gitbook.io/react-loadable-ssr-aadon/api-documentation/webpack-plugin.md).

# Webpack Plugin

## **Options**

### **filename**

Type: `string` Default: `react-loadable.json`

Assets manifest file name. May contain relative or absolute path.

### **integrity**

Type: `boolean` Default: `false`

Enable or disable generation of [Subresource Integrity (SRI).](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) hash.

### **integrityAlgorithms**

Type: `array` Default: `[ 'sha256', 'sha384', 'sha512' ]`

Algorithms to generate hash.

### **integrityPropertyName**

Type: `string` Default: `integrity`

Custom property name to be output in the assets manifest file.

## **Configuration example**

```javascript
new ReactLoadableSSRAddon({
  filename: 'assets-manifest.json',
  integrity: false,
  integrityAlgorithms: [ 'sha256', 'sha384', 'sha512' ],
  integrityPropertyName: 'integrity',
})
```
