I am working on a single page app using Vue and Webpack. Typically, Webpack generates a bundle with various chunks such as app.js and vendor.js. Currently, I am in the process of putting this static spa distribution into a Docker container. My main question is whether there is a way to inject additional JavaScript after the bundle has been created and packaged (in the dist directory) so that I can include specific variables for each deployment. This would be particularly useful for changing the API URL. What would be the most effective approach to achieve this?