I have a simple webpack.config.js
module.exports = {
entry: "./app.js",
output: {
filename: "bundle.js"
},
}
And I want to pass the values for entryand output through command line arguments. Is that possible and how would I do that?