webpack A : Provide js file bundle via webpack-dev-server
webpack B : Load the js bundle typed by webpack A
const script = document.createElement('script')
script.src = 'http://localhost:3000/bundle.js' // webpack A address
document.body.appendChild(script)
How to get webpack B to automatically update when webpack A is modified?