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
add module info header like webpack
/*!**************!*\ !*** ./a.js ***! \**************/ /***/ ((module) => { module.exports = function a() { return "This is a"; };
this plugin respects the config output#pathinfo
output#pathinfo
ref: https://github.com/webpack/webpack/blob/main/lib/WebpackOptionsApply.js#L245-L250
if (options.output.pathinfo) { const ModuleInfoHeaderPlugin = require("./ModuleInfoHeaderPlugin"); new ModuleInfoHeaderPlugin(options.output.pathinfo !== true).apply( compiler ); }
The text was updated successfully, but these errors were encountered:
stormslowly
No branches or pull requests
What problem does this feature solve?
add module info header like webpack
What does the proposed API of configuration look like?
this plugin respects the config
output#pathinfo
ref: https://github.com/webpack/webpack/blob/main/lib/WebpackOptionsApply.js#L245-L250
The text was updated successfully, but these errors were encountered: