We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The extractLicenses option can be configured in project.json file and consumed by the Webpack. It's desirable that this option is supported by Rspack.
extractLicenses Extract all licenses in a separate file, in the case of production builds only.
"production": { "optimization": true, "extractLicenses": true, "inspect": false, "fileReplacements": [ { "replace": "apps/demo-api/src/environments/environment.ts", "with": "apps/demo-api/src/environments/environment.prod.ts" } ] "mode": "production", "sourceMap": false, }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What problem does this feature solve?
The extractLicenses option can be configured in project.json file and consumed by the Webpack. It's desirable that this option is supported by Rspack.
extractLicenses
Extract all licenses in a separate file, in the case of production builds only.
What does the proposed API of configuration look like?
The text was updated successfully, but these errors were encountered: