Skip to content

Instantly share code, notes, and snippets.

@mistyharsh
Created February 18, 2024 10:24
Show Gist options
  • Save mistyharsh/5996c821b7e73413263b91debb3225eb to your computer and use it in GitHub Desktop.
Save mistyharsh/5996c821b7e73413263b91debb3225eb to your computer and use it in GitHub Desktop.
medium-webpack-node-esm-only-01
const config = {
// Entry point and output
entry: './src/index.js',
output: {
path: process.cwd() + '/dist',
filename: 'output.js',
},
mode: 'production',
};
export default config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment