I'm trying to load some arbitrary modules during runtime which are not available during build time. Think of plugins which are only required at runtime. So something like:
require(plugin_dir + '/plugins.js')
needs to be loaded but webpack complains rightfully that this module is not available. How can I make this work?
I tried SystemJS to trick webpack but it figured out what I'm trying to accomplish and fails.