-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Discussion: Support for DLL #16
Comments
Hey @nndung179. Thanks for pointing that out. There is no direct support yet. It would be no problem to use https://www.npmjs.com/package/@webpack-blocks/webpack#addpluginsplugins-webpackplugin, though. (Used like |
Should probably be implemented as another helper method for the core |
Hey @andywer I think it should be an helper method. It is kind of important feature in development env. |
@andywer Could I handle this block? |
@nndung179 Sure! Just open a PR :) You just have to add another function to packages/webpack/index.js and export it, I think. Maybe something like function dll (<someOptions>) {
return addPlugins(new webpack.DllPlugin(...))
} (so it would basically be just a wrapper around |
DLL plugins helps webpack not to loop through dependencies when webpack rebuild itself. Are you guys supporting this features?
The text was updated successfully, but these errors were encountered: