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
Copy file name to clipboardExpand all lines: src/content/configuration/output.md
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -977,3 +977,20 @@ module.exports = {
977
977
```
978
978
979
979
will name the AMD module of the UMD build. Otherwise an anonymous `define` is used.
980
+
981
+
## `output.futureEmitAssets`
982
+
983
+
`boolean: false`
984
+
985
+
Tells webpack to use the future version of asset emitting logic, which allows freeing memory of assets after emitting. It could break plugins which assume that assets are still readable after they were emitted.
986
+
987
+
W> `output.futureEmitAssets` option will be removed in webpack v5.0.0 and this behaviour will become the new default.
0 commit comments