Inspect your webpack config without changing it.
Install:
npm install --save webpack-config-tap
Add to your webpack.config.babel.js
:
import tap from `webpack-config-tap`;
tap(config => console.log(config))({
/* existing webpack configuration */
})