Step 1: npm i webpack-node-externals
Step 2: Make below changes in the webpack.config.js
const nodeExternals = require('webpack-node-externals');
module.exports = { target: 'node', externals: [nodeExternals()], };