diff --git a/src/content/configuration/output.mdx b/src/content/configuration/output.mdx index c2cfa7b5cca5..3db1d902a09c 100644 --- a/src/content/configuration/output.mdx +++ b/src/content/configuration/output.mdx @@ -629,23 +629,6 @@ type ModulePathData = { T> In some contexts properties will use JavaScript code expressions instead of raw values. In these cases, the `WithLength` variant is available and should be used instead of slicing the original value. -## output.futureEmitAssets - -`boolean = false` - -Tells webpack to use the future version of asset emitting logic, which allows freeing memory of assets after emitting. It could break plugins that assume that assets are still readable after they were emitted. - -W> `output.futureEmitAssets` option will be removed in webpack v5.0.0 and this behaviour will become the new default. - -```javascript -module.exports = { - //... - output: { - futureEmitAssets: true, - }, -}; -``` - ## output.globalObject `string = 'window'`