'linked' | 'inline' | 'none''linked'Controls how legal comments are handled in the build output.
A "legal comment" is any statement-level comment in JS or rule-level comment in CSS that contains @license or @preserve, or that starts with //! or /*!. These comments are preserved in output files by default since that follows the intent of the original authors of the code.
For example, the LICENSE comment in React:
You can control how legal comments are handled using these options:
linkedExtracts all legal comments to *.LICENSE.txt files and links to them with a comment.
.LICENSE.txt files are not loaded by the page, so they will not affect the page's performance.
inlinePreserves all legal comments in their original position. This may increase the size of the output bundles.
noneRemoves all legal comments.
Removing license comments may violate the terms of some software licenses. Please ensure you have the right to remove these comments before using this option.