You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Inform webpack to build a bundle for nodeJS, rather than for the browser
target: 'node',
// Tell webpack the root file of the server application
entry: './src/index.js',
// Tell webpack where to put the output file
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'build')
},
// Tells webpack to not bundle any libraries into output server-side bundle if that library exists inside the node modules folder, which speeds webpack by reducing bundle size