Skip to content

Instantly share code, notes, and snippets.

@0xAnon101
Last active September 27, 2018 08:16
Show Gist options
  • Save 0xAnon101/778841d6ca74afd2c52d6ec17862ab41 to your computer and use it in GitHub Desktop.
Save 0xAnon101/778841d6ca74afd2c52d6ec17862ab41 to your computer and use it in GitHub Desktop.
boilerplate webpack config
module.exports = (env,argv) => {
return {
optimization: {
nodeEnv: argv.mode
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
},
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment