I'm learning webpack and came across an example webpack.config.js that looks like this:
module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:3030',
'webpack/hot/only-dev-server',
'./src/boot.js'
],
...
I could not find any specification of the use of question mark in this case, but I assume it's like a parameter to the module webpack-dev-server/client
, am I right?