Skip to content

Instantly share code, notes, and snippets.

@lloydjatkinson
Created July 6, 2018 18:34
Show Gist options
  • Save lloydjatkinson/46cd217f5cfde0970668da8a7362c2da to your computer and use it in GitHub Desktop.
Save lloydjatkinson/46cd217f5cfde0970668da8a7362c2da to your computer and use it in GitHub Desktop.
// webpack.config.js
module.exports = {
mode: process.env.NODE_ENV || 'development',
target: 'node',
module: {
rules: [
{ test: /.js$/, exclude: /node_modules/, use: 'babel-loader' }
],
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment