When you call the esbuild build API, add the esbuild-node-externals plugin.// Your bundler file const esbuild = require('esbuild'); const { nodeExternalsPlugin } = require('esbuild-node-externals'); esbuild.buil
This plugin requires minimumNode.js 12, andEsbuild 0.12+. Usage When you call the esbuild build API, add the esbuild-node-externals plugin. // Your bundler fileconstesbuild=require('esbuild');const{nodeExternalsPlugin}=require('esbuild-node-externals');esbuild.build({entryPoints:['src/index...