Skip to content

Instantly share code, notes, and snippets.

@njbmartin
Created February 19, 2020 12:55
Show Gist options
  • Save njbmartin/05427adf2ba3dd8ccc88d68eae858eee to your computer and use it in GitHub Desktop.
Save njbmartin/05427adf2ba3dd8ccc88d68eae858eee to your computer and use it in GitHub Desktop.
const path = require('path')
module.exports = {
entry: './src/index.js',
target: 'node', // support native modules
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment