npm run dev-server
npm test -- --watch
// extra hyphens associate 'watch' with 'test' instead of with 'npm'
npm run build:prod
//webpack.config.js will return index.html when request path is 404
devServer: {
contentBase: path.join(__dirname, 'public'),
historyApiFallback: true <----
}