Skip to content

Instantly share code, notes, and snippets.

@timse
Created May 16, 2017 13:41
Show Gist options
  • Save timse/96a44b16de41793aa8e7039fba74852a to your computer and use it in GitHub Desktop.
Save timse/96a44b16de41793aa8e7039fba74852a to your computer and use it in GitHub Desktop.
// webpack.config.js
plugins: [
// ...
{
apply(compiler) {
compiler.plugin("compilation", (compilation) => {
compilation.plugin("before-module-ids", (modules) => {
modules.forEach((module) => {
if (module.id !== null) {
return;
}
module.id = module.identifier();
});
});
});
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment