I'd like to have webpack configuration, which merges everything in one file despite defined chunks. It means it should treat
require.ensure(["./AsyncModule"], (require) => {
var something = require('./AsyncModule');
});
the same way it treats
var something = require('./AsyncModule');
Is there any plugin or setting for that?
Hm, it seems that I should use
Sorry :)